diff options
author | tdback <tyler@tdback.net> | 2024-12-04 18:48:24 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2024-12-04 18:48:24 -0500 |
commit | 3b2163b821f4dbf1003804b9b19fd276dc4bc350 (patch) | |
tree | 809a679142eae8e7d3b4d2b3cf1426416883a7f9 /plugin/options.lua |
initial commit to new repo
Diffstat (limited to 'plugin/options.lua')
-rw-r--r-- | plugin/options.lua | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/plugin/options.lua b/plugin/options.lua new file mode 100644 index 0000000..c349c3a --- /dev/null +++ b/plugin/options.lua @@ -0,0 +1,37 @@ +vim.opt.showcmd = true +vim.opt.scrolloff = 8 +vim.opt.updatetime = 50 + +vim.opt.number = true +vim.opt.relativenumber = true + +vim.opt.shiftwidth = 4 +vim.opt.tabstop = 4 +vim.opt.expandtab = true +vim.opt.smartindent = true + +vim.opt.wrap = false +vim.opt.linebreak = false + +vim.opt.smartcase = true +vim.opt.ignorecase = true +vim.opt.hlsearch = false +vim.opt.incsearch = true + +vim.opt.foldmethod = "syntax" +vim.opt.foldlevel = 99 + +vim.opt.signcolumn = "yes" +vim.opt.colorcolumn = "80" +vim.opt.cursorline = true +vim.opt.cursorlineopt = "number" + +vim.opt.termguicolors = true +vim.opt.isfname:append("@-@") + +vim.opt.swapfile = false +vim.opt.backup = false +vim.opt.undofile = true +vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" + +vim.opt.mouse = "va" |