re-organized the dir and divided the init.lua into smaller plugins files
This commit is contained in:
parent
8bce42bec4
commit
8623090268
15 changed files with 373 additions and 420 deletions
22
lua/custom/plugins/lsp-config.lua
Normal file
22
lua/custom/plugins/lsp-config.lua
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
return {
|
||||
-- LSP Configuration & Plugin
|
||||
'neovim/nvim-lspconfig',
|
||||
dependencies = {
|
||||
-- Automatically install LSPs to stdpath for neovim
|
||||
{ 'williamboman/mason.nvim', config = true },
|
||||
'williamboman/mason-lspconfig.nvim',
|
||||
'WhoIsSethDaniel/mason-tool-installer.nvim',
|
||||
|
||||
-- Useful status updates for LSP
|
||||
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
|
||||
{
|
||||
'j-hui/fidget.nvim',
|
||||
tag = 'legacy',
|
||||
opts = {}
|
||||
},
|
||||
|
||||
-- Additional lua configuration, makes nvim stuff amazing!
|
||||
'folke/neodev.nvim',
|
||||
},
|
||||
}
|
||||
-- These are some example plugins that I've included in the kickstart repository.
|
||||
Loading…
Add table
Add a link
Reference in a new issue