add all previous plugins and config

This commit is contained in:
Thomas Ruoff
2023-03-06 23:14:37 +01:00
parent fdfa4e4128
commit 5d3c071e8a
10 changed files with 382 additions and 0 deletions

26
after/plugin/defaults.lua Normal file
View File

@@ -0,0 +1,26 @@
vim.opt.backup = false
vim.opt.swapfile = false
vim.opt.writebackup = false
vim.opt.colorcolumn = { 80, 120 }
vim.opt.shiftwidth = 2
vim.opt.tabstop = 2
vim.opt.showmode = false
vim.opt.relativenumber = true
vim.opt.listchars = "tab:» ,extends:,precedes:,nbsp:·,trail:·,eol:↵"
-- global status line ftw
vim.opt.laststatus = 3
-- sometimes handy, sometimes not, still evaluating
vim.opt.winbar = "%=%m %f"
vim.opt.splitbelow = true
vim.opt.splitright = true
vim.opt.scrolloff = 4
vim.opt.sidescrolloff = 4
vim.opt.spelllang = { "en_us", "en_gb", "de" }
vim.opt.foldlevelstart = 99