fix tab indentation for new lines

This commit is contained in:
Gilad Sher 2023-12-17 18:48:30 -05:00
parent 4952447714
commit 1d3e0d75ad
2 changed files with 4 additions and 0 deletions

View file

@ -3,7 +3,10 @@ vim.keymap.set("n", "<leader>pv", "<cmd>Ex<CR>")
vim.opt.ignorecase = true
vim.opt.smartcase = true
vim.opt.smartindent = true
vim.opt.autoindent = true
vim.opt.expandtab = true
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.keymap.set("n", "<leader>y", '"+y')
vim.keymap.set("n", "<leader>gs", ':Git<CR>')
vim.keymap.set("n", "<leader>gp", ':Git pull<CR>')