Files
Nvim/lua/plugins/guessIndent.lua
2026-07-24 07:24:45 -05:00

11 lines
473 B
Lua

return {
'NMAC427/guess-indent.nvim',
config = function()
require('guess-indent').setup {
auto_cmd = true, -- Set to false to disable automatic execution
filetype_exclude = { 'netrw', 'tutor' }, -- A list of filetypes for which the auto command gets disabled
buftype_exclude = { 'help', 'nofile', 'terminal', 'prompt' }, -- A list of buffer types for which the auto command gets disabled
}
end,
} -- Detect tabstop and shiftwidth automatically