feat: configure blankline exceptions

main
mandlm 2022-02-24 07:57:25 +01:00
parent e7f411ac8f
commit a94b69a34f
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 4 additions and 2 deletions

View File

@ -63,7 +63,9 @@ return require('packer').startup(function(use)
config = function()
require("indent_blankline").setup {
char = "",
buftype_exclude = {"terminal", "help"}
buftype_exclude = {"terminal", "help", "nofile"},
filetype_exclude = {'help', 'packer'},
show_trailing_blankline_indent = false
}
end
})
@ -107,7 +109,7 @@ return require('packer').startup(function(use)
requires = {{'nvim-lua/plenary.nvim'}},
config = function() require('plugins.telescope') end
})
use({'nvim-telescope/telescope-fzf-native.nvim', run ='make'})
use({'nvim-telescope/telescope-fzf-native.nvim', run = 'make'})
-- automatic pairs
use({"Raimondi/delimitMate"})