This commit is contained in:
Bryan Ramos 2023-06-11 22:13:26 -04:00
parent 7cbf5a08ea
commit c40cdf87b3
3 changed files with 7 additions and 5 deletions

View file

@ -8,6 +8,11 @@ vim.opt.softtabstop = 2
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.cmd([[
autocmd FileType python setlocal tabstop=4 shiftwidth=4 softtabstop=4
autocmd FileType haskell setlocal tabstop=4 shiftwidth=4 softtabstop=4
]])
vim.opt.ignorecase = true
vim.opt.smartcase = true