diff options
| author | yuzu-eva <stevenhu@web.de> | 2022-06-09 23:15:46 +0200 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2022-06-09 23:15:46 +0200 |
| commit | 47bcd478bfe3a949300f1e620502c83378f03ad4 (patch) | |
| tree | bdf180984a7c616f02ffe1c8391e719179922fae /.config/nvim | |
| parent | a4e56656abe84d6fdf230b8554e07c9ab8f6fd66 (diff) | |
changed kitty font, added bashls
Diffstat (limited to '.config/nvim')
| -rw-r--r-- | .config/nvim/lua/user/plugins/lspconfig.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.config/nvim/lua/user/plugins/lspconfig.lua b/.config/nvim/lua/user/plugins/lspconfig.lua index b5dfc86..6774994 100644 --- a/.config/nvim/lua/user/plugins/lspconfig.lua +++ b/.config/nvim/lua/user/plugins/lspconfig.lua @@ -126,6 +126,14 @@ require 'lspconfig'.solargraph.setup { }, } +require 'lspconfig'.bashls.setup{ + on_attach = on_attach, + capabilities = capabilities, + flags = { + debounce_text_changes = 150, + }, +} + -- suppress error messages from lang servers vim.notify = function(msg, log_level, _) if msg:match 'exit code' then |
