mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-09-02 12:09:07 +00:00
[neovim] Reorganize lua packages
This commit is contained in:
18
.config/nvim/lua/plugins/indentline.lua
Normal file
18
.config/nvim/lua/plugins/indentline.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
local status_ok, indent_blankline = pcall(require, "indent_blankline")
|
||||
if not status_ok then
|
||||
return
|
||||
end
|
||||
|
||||
indent_blankline.setup({
|
||||
char = "▏",
|
||||
show_trailing_blankline_indent = false,
|
||||
show_first_indent_level = true,
|
||||
use_treesitter = true,
|
||||
show_current_context = true,
|
||||
buftype_exclude = { "terminal", "nofile" },
|
||||
filetype_exclude = {
|
||||
"help",
|
||||
"packer",
|
||||
"neo-tree",
|
||||
},
|
||||
})
|
Reference in New Issue
Block a user