aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins')
-rw-r--r--nvim/lua/plugins/lsp.lua1
-rw-r--r--nvim/lua/plugins/treesitter.lua3
2 files changed, 3 insertions, 1 deletions
diff --git a/nvim/lua/plugins/lsp.lua b/nvim/lua/plugins/lsp.lua
index e888ae0..19ec93d 100644
--- a/nvim/lua/plugins/lsp.lua
+++ b/nvim/lua/plugins/lsp.lua
@@ -21,6 +21,7 @@ return {
21 } 21 }
22 22
23 vim.lsp.enable({ 23 vim.lsp.enable({
24 "bashls", -- npm install -g bash-language-server
24 "clangd", -- pkg install llvm 25 "clangd", -- pkg install llvm
25 "lua_ls", -- pkg install lua-language-server 26 "lua_ls", -- pkg install lua-language-server
26 }) 27 })
diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua
index edcaff2..8982a2c 100644
--- a/nvim/lua/plugins/treesitter.lua
+++ b/nvim/lua/plugins/treesitter.lua
@@ -9,10 +9,11 @@ return {
9 config = function() 9 config = function()
10 local treesitter = require("nvim-treesitter") 10 local treesitter = require("nvim-treesitter")
11 11
12 treesitter.setup({}) 12 -- treesitter.setup({})
13 13
14 -- https://github.com/nvim-treesitter/nvim-treesitter/blob/main/SUPPORTED_LANGUAGES.md 14 -- https://github.com/nvim-treesitter/nvim-treesitter/blob/main/SUPPORTED_LANGUAGES.md
15 treesitter.install({ 15 treesitter.install({
16 "bash",
16 "c", 17 "c",
17 "cpp", 18 "cpp",
18 "html", 19 "html",