diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2023-05-03 23:18:40 +0200 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2023-05-03 23:18:40 +0200 |
| commit | 2a3dda49dfd0faae1cbe9dbea14bf0d40623bd6a (patch) | |
| tree | 119772e8479f59f7fae7f26233013b9d6f516eb3 /nvim/init.lua | |
| parent | 7f6d37650d228f4765fc8b9a0bde2feaaaee4927 (diff) | |
.
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 4941fbc..d852fe8 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -334,6 +334,19 @@ require('packer').startup { end } + use { + 'neovim/nvim-lspconfig', + config = function() + local lspconfig = require('lspconfig') + -- lspconfig.jedi_language_server.setup {} + -- lspconfig.bashls.setup {} + -- lspconfig.clangd.setup { + -- cmd = {'clangd', '--header-insertion=never'} + -- } + -- lspconfig.tsserver.setup {} + end + } + if bootstrap_packer then require('packer').sync() end |
