Update misc-utils.lua

Not DRY or elegant, but allows for file specific tabbing. Python uses 4 by std while the JS/TS ecosystem uses 2.
This commit is contained in:
Henri 2021-06-03 11:49:52 -07:00 committed by GitHub
parent a54352ec1a
commit 1508fd8fb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -40,5 +40,7 @@ function M.has_width_gt(cols)
-- Check if the windows width is greater than a given number of columns -- Check if the windows width is greater than a given number of columns
return vim.fn.winwidth(0) / 2 > cols return vim.fn.winwidth(0) / 2 > cols
end end
-- file extension specific tabbing
vim.cmd([[autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4]])
vim.cmd([[autocmd Filetype bash setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4]])
return M return M