From a05421b0e4d18c29c9358cd89bea9a61d77d2147 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Sat, 31 Jan 2026 15:09:18 -0500 Subject: laptop updates 2026-01-31 --- config/niri/jonbox.kdl | 4 ++++ config/nvim/lua/lsp.lua | 7 +++++++ 2 files changed, 11 insertions(+) (limited to 'config') diff --git a/config/niri/jonbox.kdl b/config/niri/jonbox.kdl index 950e728..4952ac7 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", "rn", "(coc-rename)", {silent = true}) -- cgit v1.2.3