make tabs 4 spaces

This commit is contained in:
Paul Trowbridge 2023-04-06 12:08:24 -04:00
parent 8a89abfc4f
commit 052c523466
1 changed files with 4 additions and 0 deletions

View File

@ -67,3 +67,7 @@ vim.api.nvim_set_keymap('n', '<Down>', '5<C-w>-', { silent = true })
vim.api.nvim_set_keymap('n', '<Right>', '10<C-w>>', { silent = true })
vim.api.nvim_set_keymap('n', '<Left>', '10<C-w><', { silent = true })
-- Set the tab width to 4 spaces
vim.cmd('set tabstop=4')
vim.cmd('set shiftwidth=4')
vim.cmd('set expandtab')