summaryrefslogtreecommitdiffstats
path: root/nvim-primeagen/lua/lemon/set.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim-primeagen/lua/lemon/set.lua')
-rw-r--r--nvim-primeagen/lua/lemon/set.lua44
1 files changed, 44 insertions, 0 deletions
diff --git a/nvim-primeagen/lua/lemon/set.lua b/nvim-primeagen/lua/lemon/set.lua
new file mode 100644
index 0000000..3c662a9
--- /dev/null
+++ b/nvim-primeagen/lua/lemon/set.lua
@@ -0,0 +1,44 @@
+vim.opt.guicursor = ""
+
+vim.opt.nu = true
+vim.opt.relativenumber = true
+
+vim.opt.tabstop = 4
+vim.opt.softtabstop = 4
+vim.opt.shiftwidth = 4
+vim.opt.expandtab = true
+vim.opt.autoindent = true
+
+vim.opt.smartindent = true
+
+vim.opt.wrap = false
+
+vim.opt.swapfile = false
+vim.opt.backup = false
+vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
+vim.opt.undofile = true
+
+vim.opt.hlsearch = false
+vim.opt.incsearch = true
+
+vim.opt.termguicolors = true
+
+vim.opt.scrolloff = 8
+vim.opt.signcolumn = "yes"
+vim.opt.isfname:append("@-@")
+
+vim.opt.updatetime = 50
+
+vim.opt.colorcolumn = ""
+
+-- end ThePrimeagen stuff
+
+vim.opt.wildmenu = true
+vim.opt.showmatch = true
+vim.opt.splitbelow = true
+vim.opt.splitright = true
+vim.opt.hidden = true
+vim.opt.path = "+=**"
+vim.opt.more = true
+vim.opt.equalalways = true
+vim.opt.listchars="tab:»→,trail:␣"