diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2024-05-20 00:19:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-20 00:19:17 +0000 |
| commit | 086f68e1af17ff3020b3283f8a5763d062ca6770 (patch) | |
| tree | d442f26ef7998cb20d68abcf744c3d7bef200506 /nvim/lua/options.lua | |
| parent | ea3aae96fde86256f9996d55e88dac608a30deae (diff) | |
update nix config
Diffstat (limited to 'nvim/lua/options.lua')
| -rw-r--r-- | nvim/lua/options.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua new file mode 100644 index 0000000..994ed77 --- /dev/null +++ b/nvim/lua/options.lua @@ -0,0 +1,19 @@ +vim.g.mapleader = " " + +vim.o.clipboard = "unnamedplus" + +vim.o.number = true + +vim.o.expandtab = true + +vim.o.shiftwidth = 2 + +vim.o.smartindent = true + +vim.o.tabstop = 2 + +vim.o.softtabstop = 2 + +vim.opt.shortmess:append "sI" + +vim.opt.whichwrap:append "<>[]hl" |
