diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/niri/jonbox.kdl | 4 | ||||
| -rw-r--r-- | config/nvim/lua/lsp.lua | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/config/niri/jonbox.kdl b/config/niri/jonbox.kdl index e885c1d..a1826f9 100644 --- a/config/niri/jonbox.kdl +++ b/config/niri/jonbox.kdl @@ -325,6 +325,10 @@ window-rule { clip-to-geometry true } +cursor { + xcursor-size 12 +} + binds { // Keys consist of modifiers separated by + signs, followed by an XKB key name // in the end. To find an XKB name for a particular key, you may use a program diff --git a/config/nvim/lua/lsp.lua b/config/nvim/lua/lsp.lua index 5d84e30..2e823ec 100644 --- a/config/nvim/lua/lsp.lua +++ b/config/nvim/lua/lsp.lua @@ -71,6 +71,13 @@ vim.api.nvim_create_autocmd("CursorHold", { desc = "Highlight symbol under cursor on CursorHold" }) +vim.api.nvim_create_autocmd("Filetype", { + pattern = "c", + callback = function() + vim.opt_local.spell = false + end, +}) + -- Symbol renaming keyset("n", "<leader>rn", "<Plug>(coc-rename)", {silent = true}) |
