Initial commit, includes basic settings, treesitter for python, c++ and a few other languages, and lspconfig for python.
This commit is contained in:
commit
e493606f9b
5 changed files with 52 additions and 0 deletions
6
lua/plugins/everforest-nvim.lua
Normal file
6
lua/plugins/everforest-nvim.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
return {{
|
||||
"neanias/everforest-nvim",
|
||||
version = false,
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
}}
|
||||
3
lua/plugins/nvim-lspconfig.lua
Normal file
3
lua/plugins/nvim-lspconfig.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
return {{
|
||||
"neovim/nvim-lspconfig"
|
||||
}}
|
||||
14
lua/plugins/nvim-treesitter.lua
Normal file
14
lua/plugins/nvim-treesitter.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
return {{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
build = ":TSUpdate",
|
||||
config = function ()
|
||||
local configs = require("nvim-treesitter.configs")
|
||||
|
||||
configs.setup({
|
||||
ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "python", "html" },
|
||||
sync_install = false,
|
||||
highlight = { enable = true },
|
||||
indent = { enable = true },
|
||||
})
|
||||
end
|
||||
}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue