Skip to content

Commit

Permalink
Merge branch 'nvim-view-indent-fixes' into dev
Browse files Browse the repository at this point in the history
* nvim-view-indent-fixes:
  fix: change `indent-blankline.nvim` exclusions
  refactor: rename `indent-blankline.nvim` to `view-indent`
  fix: correct typo
  • Loading branch information
jade-tea-h committed Feb 7, 2024
2 parents e85338a + d5ed33b commit 41aa1c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/.config/nvim/lua/plugins/ui/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ return {

{
"lukas-reineke/indent-blankline.nvim",
name = "indent",
name = "view-indent",
main = "ibl",
opts = {
indent = {
Expand All @@ -40,10 +40,10 @@ return {
show_start = false,
show_end = false,
highlight = "Label",
exclude = { language = { "toml", "gitconfig" }, },
},
exclude = { filetypes = { "gitconfig" }, },
},
confic = true,
config = true,
version = "*",
event = { "BufReadPost", "BufNewFile" },
},
Expand Down

0 comments on commit 41aa1c7

Please sign in to comment.