diff --git a/.cspell.json b/.cspell.json index 7472cba..08b4323 100644 --- a/.cspell.json +++ b/.cspell.json @@ -1 +1 @@ -{"ignorePaths":["nvim\/dictionary","nvim\/spell","nvim\/thesaurus","private"],"words":["Cheatsheet","Fira","Groeger","Imhoff","MANPATH","Neovim","Zelos","astro","autotag","baleia","catppuccin","chafa","chriskempson","difftool","dotfiles","folke","goolord","miniconda","noautocmd","noice","nvim","oldfiles","pnpx","princejoogie","softwareupdate","startinsert","texbin","tmuxinator","tpope","wezterm","whatchanged","windwp","wuelnerdotexe","zoxide","hrsh","tailwindcss","roobert","zbirenbaum","Kunz","lazyvim","guifg","guibg","devicons","lualine","linrongbin","globalstatus","stylua","navic","tabline","Autocmds","autocmd","afile","yabairc","skhd","skhdrc","yabai","nolist","gitmux","linebreak","wincmd","tabdo","augroup","keymap","keymaps","noremap","bdelete","bufdo","Nzzzv","treesitter","tzachar","hlgroup","neotest","getcwd","haydenmeade","vitest","marilari","showbreak","autowrite","copyindent","foldlevel","foldlevelstart","foldmethod","foldnestmax","grepprg","listchars","shiftwidth","softtabstop","swapfile","virtualedit","vimgrep","iskeyword","wildignore","kspell","spellfile","openthesaurus","lazypath","stdpath","habamax","matchit","matchparen","netrw","tohtml","tokyonight","vimperator","unitrect","FULLSCREEN","fullframerect","framerect","Sonos","Kalender","Reeder","screenwatcher","ypos","xpos","xpixels","ypixels","Mousepoint","applescript","pathwatcher","Hammerspoon","osascript","Pomodori","ldelossa","litee","Unfloat"],"language":"en","version":"0.2","dictionaries":["words"]} +{"language":"en","version":"0.2","words":["Cheatsheet","Fira","Groeger","Imhoff","MANPATH","Neovim","Zelos","astro","autotag","baleia","catppuccin","chafa","chriskempson","difftool","dotfiles","folke","goolord","miniconda","noautocmd","noice","nvim","oldfiles","pnpx","princejoogie","softwareupdate","startinsert","texbin","tmuxinator","tpope","wezterm","whatchanged","windwp","wuelnerdotexe","zoxide","hrsh","tailwindcss","roobert","zbirenbaum","Kunz","lazyvim","guifg","guibg","devicons","lualine","linrongbin","globalstatus","stylua","navic","tabline","Autocmds","autocmd","afile","yabairc","skhd","skhdrc","yabai","nolist","gitmux","linebreak","wincmd","tabdo","augroup","keymap","keymaps","noremap","bdelete","bufdo","Nzzzv","treesitter","tzachar","hlgroup","neotest","getcwd","haydenmeade","vitest","marilari","showbreak","autowrite","copyindent","foldlevel","foldlevelstart","foldmethod","foldnestmax","grepprg","listchars","shiftwidth","softtabstop","swapfile","virtualedit","vimgrep","iskeyword","wildignore","kspell","spellfile","openthesaurus","lazypath","stdpath","habamax","matchit","matchparen","netrw","tohtml","tokyonight","vimperator","unitrect","FULLSCREEN","fullframerect","framerect","Sonos","Kalender","Reeder","screenwatcher","ypos","xpos","xpixels","ypixels","Mousepoint","applescript","pathwatcher","Hammerspoon","osascript","Pomodori","ldelossa","litee","Unfloat","cursorline","cursorword","yamatsum"],"dictionaries":["words"],"ignorePaths":["nvim\/dictionary","nvim\/spell","nvim\/thesaurus","private"]} diff --git a/nvim/lua/config/options.lua b/nvim/lua/config/options.lua index ecb491e..b4cce3e 100644 --- a/nvim/lua/config/options.lua +++ b/nvim/lua/config/options.lua @@ -5,6 +5,7 @@ vim.opt.autowrite = true vim.opt.backspace = { "indent", "eol", "start" } -- Intuitive backspacing vim.opt.copyindent = true vim.opt.foldlevel = 2 +vim.opt.cursorline = false vim.opt.foldlevelstart = 99 vim.opt.foldmethod = "indent" vim.opt.foldnestmax = 10 diff --git a/nvim/lua/plugins/cursorline.lua b/nvim/lua/plugins/cursorline.lua index 115f2dd..4cf2377 100644 --- a/nvim/lua/plugins/cursorline.lua +++ b/nvim/lua/plugins/cursorline.lua @@ -6,7 +6,7 @@ return { config = function() require("nvim-cursorline").setup({ cursorline = { - enable = true, + enable = false, timeout = 1000, number = false, },