auto-indent.nvim
auto-indent.nvim copied to clipboard
Auto indent like VSCode when cursor at the first column and press <TAB> key
AutoIndent.nvim
A simple util providing auto indent like VSCode when cursor at the first column and press <TAB> key
https://github.com/VidocqH/auto-indent.nvim/assets/16725418/b0eda63f-9b7d-4708-8477-00bde49d8f40
Installation
Lazy
requir("lazy").setup({
{
'vidocqh/auto-indent.nvim',
opts = {},
},
})
Configuration
Default Config
require("auto-indent").setup({
lightmode = true, -- Lightmode assumes tabstop and indentexpr not change within buffer's lifetime
indentexpr = nil, -- Use vim.bo.indentexpr by default, see 'Custom Indent Evaluate Method'
ignore_filetype = {}, -- Disable plugin for specific filetypes, e.g. ignore_filetype = { 'javascript' }
})
Custom Indent Evaluate Method
indentexpr
should be a function returns quantity of indents
example using treesitter.indent module
{
---@param lnum: number
---@return number
indentexpr = function(lnum)
return require("nvim-treesitter.indent").get_indent(lnum)
end
}