initial commit

This commit is contained in:
Andre Schaf 2023-07-13 10:45:16 +02:00
commit 9784dfe498
12 changed files with 329 additions and 0 deletions

33
lua/set.lua Normal file
View file

@ -0,0 +1,33 @@
vim.opt.guicursor = ""
vim.opt.nu = true
vim.opt.rnu = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.opt.wrap = false
vim.opt.list = true
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
vim.opt.undofile = true
vim.opt.hlsearch = true
vim.opt.incsearch = true
vim.opt.termguicolors = true
vim.opt.scrolloff = 8
vim.opt.signcolumn = "yes"
vim.opt.updatetime = 50
-- use system clipboard
vim.opt.clipboard = "unnamedplus"