diff options
author | Revaz Nakhutsrishvili <r@revaz.xyz> | 2025-05-06 05:24:41 +0400 |
---|---|---|
committer | Revaz Nakhutsrishvili <r@revaz.xyz> | 2025-05-06 05:24:41 +0400 |
commit | 475485143033d060c208cd5b0cd14e2fd35f3344 (patch) | |
tree | e8b48bbe8378edaa763779b0595088f4e40611a9 /nvim/.config | |
parent | aef59c59ebb7e00867748608aa77d1f674fe7038 (diff) |
nvim: add options
Diffstat (limited to 'nvim/.config')
-rw-r--r-- | nvim/.config/nvim/lua/options.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/nvim/.config/nvim/lua/options.lua b/nvim/.config/nvim/lua/options.lua new file mode 100644 index 0000000..6f9ff6d --- /dev/null +++ b/nvim/.config/nvim/lua/options.lua @@ -0,0 +1,22 @@ +vim.opt.guicursor = "" +vim.opt.termguicolors = true + +vim.opt.nu = true +vim.opt.relativenumber = true + +vim.opt.tabstop = 2 +vim.opt.softtabstop = 2 +vim.opt.shiftwidth = 2 +vim.opt.expandtab = true + +vim.opt.smartindent = true + +vim.opt.wrap = false + +vim.opt.swapfile = false +vim.opt.backup = false + +vim.opt.hlsearch = false +vim.opt.incsearch = true + +vim.opt.colorcolumn = "80" |