aboutsummaryrefslogtreecommitdiff
path: root/nvim/.config/nvim/lua/config/options.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/.config/nvim/lua/config/options.lua')
-rw-r--r--nvim/.config/nvim/lua/config/options.lua39
1 files changed, 39 insertions, 0 deletions
diff --git a/nvim/.config/nvim/lua/config/options.lua b/nvim/.config/nvim/lua/config/options.lua
new file mode 100644
index 0000000..01489f0
--- /dev/null
+++ b/nvim/.config/nvim/lua/config/options.lua
@@ -0,0 +1,39 @@
+local options = {
+ cmdheight = 0,
+
+ number = true,
+ relativenumber = true,
+
+ clipboard = "unnamedplus",
+
+ breakindent = true,
+ tabstop = 4,
+ softtabstop = 4,
+ shiftwidth = 4,
+ expandtab = true,
+
+ undofile = true,
+
+ hlsearch = false,
+ ignorecase = true,
+ smartcase = true,
+
+ completeopt = "menuone,noselect",
+
+ timeout = true,
+ timeoutlen = 500,
+
+ foldcolumn = "0",
+ foldlevel = 99,
+ foldlevelstart = 99,
+ foldenable = true,
+
+ spelllang = { "nb", "en" },
+ spellcapcheck = "",
+}
+
+vim.g.spellfile_URL = "https://ftp.nluug.nl/pub/vim/runtime/spell/"
+
+for k, v in pairs(options) do
+ vim.opt[k] = v
+end