diff options
| author | Thomas Schmucker <ts@its1.de> | 2025-12-22 23:56:41 +0100 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2025-12-22 23:56:41 +0100 |
| commit | 3082bbae83560be01e76e2e8a3c6299b42a19ed0 (patch) | |
| tree | 5b59d1087a6dd48d600fe219e927cd12bf05340b /nvim/lua | |
| parent | e8bd36899b88285c94c850f0dfce0754d94cfe24 (diff) | |
| download | dotfiles-3082bbae83560be01e76e2e8a3c6299b42a19ed0.tar.gz dotfiles-3082bbae83560be01e76e2e8a3c6299b42a19ed0.tar.bz2 dotfiles-3082bbae83560be01e76e2e8a3c6299b42a19ed0.zip | |
Benutze symbolische Links statt die Dateien zu kopieren
Diffstat (limited to 'nvim/lua')
| -rw-r--r-- | nvim/lua/plugins/lsp.lua | 1 | ||||
| -rw-r--r-- | nvim/lua/plugins/treesitter.lua | 3 |
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", |
