diff options
| author | Trey Bastian <hello@treybastian.com> | 2025-10-29 11:52:37 +0000 |
|---|---|---|
| committer | Trey Bastian <hello@treybastian.com> | 2025-10-29 11:52:37 +0000 |
| commit | 019a93697352f442edfbf7b12abcaa0ff4293cfd (patch) | |
| tree | 357523f499c13438cc61300f1812b4215a526cb1 /lua/config/opts.lua | |
new and improved nvim config
Diffstat (limited to 'lua/config/opts.lua')
| -rw-r--r-- | lua/config/opts.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lua/config/opts.lua b/lua/config/opts.lua new file mode 100644 index 0000000..1e951e4 --- /dev/null +++ b/lua/config/opts.lua @@ -0,0 +1,23 @@ +-- options +local o = vim.opt +o.expandtab = true +o.signcolumn = "yes" +o.nu = true +o.relativenumber = true +o.tabstop = 4 +o.softtabstop = 4 +o.shiftwidth = 2 +o.expandtab = true +o.smartindent = true +o.wrap = false +o.swapfile = false +o.backup = false +o.undofile = true +o.undodir = vim.fn.stdpath("data") .. "/undodir" +o.hlsearch = false +o.incsearch = true +o.clipboard = "unnamedplus" +o.colorcolumn = "80" +o.pumheight = 15 +o.updatetime = 50 +o.scrolloff = 8 |
