diff options
Diffstat (limited to '.vim/lua/internal/plugins/indent.lua')
| -rw-r--r-- | .vim/lua/internal/plugins/indent.lua | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.vim/lua/internal/plugins/indent.lua b/.vim/lua/internal/plugins/indent.lua deleted file mode 100644 index a27a328..0000000 --- a/.vim/lua/internal/plugins/indent.lua +++ /dev/null @@ -1,28 +0,0 @@ -return { - -- show indents using virtual text - { - 'lukas-reineke/indent-blankline.nvim', - lazy = false, - main = 'ibl', - opts = { - indent = { - char = '▏', - }, - scope = { - enabled = true, - show_start = false, - show_end = false, - }, - }, - }, - -- detect indent from the buffer contents - { - 'NMAC427/guess-indent.nvim', - lazy = false, - opts = { - auto_cmd = true, - filetype_exclude = { 'netrw', 'tutor', 'dirbuf', 'nvimtree', 'oil' }, - buftype_exclude = { 'help', 'nofile', 'terminal', 'prompt' }, - }, - }, -} |