aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorLuca Matei Pintilie <lucafulger@gmail.com>2023-04-07 10:43:13 +0000
committerLuca Matei Pintilie <lucafulger@gmail.com>2023-04-07 10:43:13 +0000
commit4bea5f472cc649da5fa4ef4dc7b719d75b9f2d57 (patch)
tree9a98aee8345128dadb3950f109392cb44ba0d2c2 /.config
parentd40df46b6c003ff2d574d5efc36cecebafe39f6e (diff)
downloaddotfiles-4bea5f472cc649da5fa4ef4dc7b719d75b9f2d57.tar
dotfiles-4bea5f472cc649da5fa4ef4dc7b719d75b9f2d57.tar.gz
dotfiles-4bea5f472cc649da5fa4ef4dc7b719d75b9f2d57.tar.bz2
dotfiles-4bea5f472cc649da5fa4ef4dc7b719d75b9f2d57.tar.lz
dotfiles-4bea5f472cc649da5fa4ef4dc7b719d75b9f2d57.tar.xz
dotfiles-4bea5f472cc649da5fa4ef4dc7b719d75b9f2d57.tar.zst
dotfiles-4bea5f472cc649da5fa4ef4dc7b719d75b9f2d57.zip
Neovim improvements
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/lua/general.lua5
-rw-r--r--.config/nvim/lua/lsp.lua11
-rw-r--r--.config/nvim/lua/plugins.lua1
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" };