diff options
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/lua/general.lua | 5 | ||||
-rw-r--r-- | .config/nvim/lua/lsp.lua | 11 | ||||
-rw-r--r-- | .config/nvim/lua/plugins.lua | 1 |
3 files changed, 8 insertions, 9 deletions
diff --git a/.config/nvim/lua/general.lua b/.config/nvim/lua/general.lua index 4d02f1d..b44ab20 100644 --- a/.config/nvim/lua/general.lua +++ b/.config/nvim/lua/general.lua @@ -10,6 +10,8 @@ vim.opt.undolevels = 1000 vim.opt.wrap = false vim.opt.colorcolumn = "120" vim.opt.scrolloff = 5 +vim.opt.spelllang = "en,nb" +vim.opt.cursorline = true -- vim.opt.tabstop = 4 -- vim.opt.softtabstop = -1 @@ -23,6 +25,9 @@ vim.cmd [[autocmd FileType css setlocal shiftwidth=2 softtabstop=2 expandtab]] vim.cmd [[autocmd FileType html setlocal shiftwidth=2 softtabstop=2 expandtab]] vim.cmd [[autocmd FileType json setlocal shiftwidth=2 softtabstop=2 expandtab]] vim.cmd [[autocmd FileType cs setlocal shiftwidth=4 softtabstop=4 expandtab]] +vim.cmd [[autocmd FileType mail setlocal textwidth=72 colorcolumn=72 spell]] +vim.cmd [[autocmd FileType markdown setlocal textwidth=72 colorcolumn=72 spell]] +vim.cmd [[autocmd FileType gitcommit setlocal textwidth=72 colorcolumn=50,72 spell]] vim.cmd [[filetype indent off]] diff --git a/.config/nvim/lua/lsp.lua b/.config/nvim/lua/lsp.lua index 495f7fa..a2207d5 100644 --- a/.config/nvim/lua/lsp.lua +++ b/.config/nvim/lua/lsp.lua @@ -163,14 +163,6 @@ lspconfig.rust_analyzer.setup({ on_attach = on_attach; }) -lspconfig.sqls.setup({ - on_attach = function(client, bufnr) - require("sqls").on_attach(client, bufnr) - on_attach(client, bufnr) - end; - capabilities = capabilities; -}) - lspconfig.omnisharp.setup({ cmd = { "omnisharp" }; @@ -295,6 +287,9 @@ null_ls.setup({ }; }) +vim.lsp.handlers["textDocument/hover"] = + vim.lsp.with(vim.lsp.handlers.hover, + { border = "rounded"; relative = "cursor"; max_width = 80 }) -- Debugging local dap, dapui = require("dap"), require("dapui") diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 157b926..b7e5071 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -47,7 +47,6 @@ local PKGS = { { url = "https://github.com/editorconfig/editorconfig-vim.git" }; { url = "https://github.com/nathom/filetype.nvim.git" }; { url = "https://github.com/wfxr/minimap.vim.git" }; - { url = "https://github.com/preservim/nerdcommenter.git" }; -- LSP { url = "https://github.com/neovim/nvim-lspconfig.git" }; |