Update alpheratz and add new key

This commit is contained in:
2024-10-18 12:02:58 -05:00
parent 6361f1666b
commit 7e3cbdf0cb
7 changed files with 49 additions and 26 deletions

View File

@@ -10,6 +10,16 @@ vim.opt.softtabstop=4
vim.opt.shiftwidth=4
vim.opt.shiftround=true
vim.api.nvim_create_autocmd(
{ "FileType" },
{ pattern = "nix",
callback = function()
vim.opt.softtabstop=2
vim.opt.shiftwidth=2
end
}
)
vim.opt.backspace={'indent','eol','start'}
vim.opt.hidden=true
vim.opt.laststatus=2