dotfiles/dot_config/nvim/lua/wekuz/executable_opts.lua
Wekuz 208d89af36
Add Estonian language to Neovim spellchecker
How to generate the necessary language files:
- install hunspell-et on Arch Linux
- run `nvim -u NONE -c "mkspell! et /usr/share/hunspell/et_EE" -c q` in ~/.local/share/nvim/site/spell
2026-05-10 22:28:39 +03:00

22 lines
515 B
Lua

vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.cursorline = true
vim.opt.colorcolumn = "110"
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.opt.wrap = false
vim.opt.termguicolors = true
vim.opt.hlsearch = false
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.nvim/undodir"
vim.opt.undofile = true
vim.opt.updatetime = 2000
vim.opt.clipboard = "unnamedplus"
vim.opt.spelllang = { "en_gb", "en_us", "et" }