Skip to content

Commit

Permalink
fix(plugins): disable space and eol chars & sort indent_blankline opt…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
ecosse3 committed Feb 1, 2022
1 parent 9c06bc6 commit 2476e93
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions lua/plugins/indent.lua
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
vim.opt.listchars = {
space = "",
eol = "",
}
-- https://github.com/lukas-reineke/indent-blankline.nvim

vim.opt.list = true
-- vim.opt.listchars:append("space:⋅")
-- vim.opt.listchars:append("eol:↴")

require("indent_blankline").setup {
buftype_exclude = {"terminal", "telescope", "nofile"},
filetype_exclude = {"help", "dashboard", "packer", "NvimTree", "Trouble", "TelescopePrompt", "Float"},
space_char_blankline = " ",
show_current_context = true,
show_end_of_line = true,
show_current_context_start = false,
show_end_of_line = false,
show_trailing_blankline_indent = false,
space_char_blankline = " ",
use_treesitter = true,
}

0 comments on commit 2476e93

Please sign in to comment.