switched to a submodule

This commit is contained in:
kalmenn 2023-12-18 09:11:00 +01:00
commit fdf977246d
Signed by: kalmenn
GPG key ID: DFF253360BF8471F
14 changed files with 276 additions and 0 deletions

39
lua/sets.lua Normal file
View file

@ -0,0 +1,39 @@
-- line numbers
vim.o.number = true
vim.o.relativenumber = true
-- show hidden characters
vim.opt.list = true
vim.opt.listchars = { tab = '', trail = '·' }
-- indentation
vim.opt.expandtab = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.smartindent = true
-- line wrapping
vim.opt.wrap = false
-- undo history
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.local/state/nvim/undodir"
vim.opt.undofile = true
vim.opt.updatetime = 50
-- end search when exiting
vim.opt.hlsearch = false
vim.opt.incsearch = true
-- stuff
vim.opt.fillchars:append({ eob = ' ' })
vim.opt.termguicolors = true
vim.opt.scrolloff = 8
vim.opt.colorcolumn = "80"