add after files

This commit is contained in:
vladstojna 2023-04-18 02:00:29 +01:00 committed by vladstojna
parent 693e7c3053
commit dd052a01e9
11 changed files with 140 additions and 0 deletions

21
after/plugin/set.lua Normal file
View file

@ -0,0 +1,21 @@
-- Custom options
vim.opt.shell = "zsh"
vim.opt.relativenumber = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.opt.wrap = true
vim.opt.incsearch = true
vim.opt.scrolloff = 8
vim.opt.isfname:append("@-@")
vim.opt.colorcolumn = "80"