update neoformat and indent-blankline

This commit is contained in:
juan 2021-10-25 10:53:37 +08:00
parent 473162175c
commit b9f4d3efda
Signed by: juan
GPG Key ID: 5C1E5093C74F1DC7
4 changed files with 7 additions and 3 deletions

View File

@ -24,6 +24,8 @@ opt.completeopt = 'noinsert'
-- neoformat settings.
global.neoformat_basic_format_align = 1
global.neoformat_basic_format_retab = 1
global.neoformat_basic_format_trim = 1
-- leader settings
global.mapleader = ' '

View File

@ -57,7 +57,7 @@ return require('packer').startup(function(use)
use {
'ms-jpq/coq_nvim',
branch = 'coq',
event = 'InsertEnter',
after = 'nvim-lspinstall',
run = ':COQdeps',
config = function() require "plugins.coq" end
}
@ -164,7 +164,6 @@ return require('packer').startup(function(use)
}
-- integrations
use {'michaelb/sniprun', run = 'bash ./install.sh', cmd = "SnipRun"}
use {"tpope/vim-fugitive", cmd = "G"}
use {
"xuhdev/vim-latex-live-preview",

View File

@ -15,5 +15,4 @@ require('base16-colorscheme').setup({
base0D = "#84a0c6",
base0E = "#a093c7",
base0F = "#e27878"
})

View File

@ -1,5 +1,9 @@
require("indent_blankline").setup {
buftype_exclude = {"terminal", "help", "packer"},
char = "",
space_char_blankline = ' ',
max_indent_increase = 2,
show_first_indent_level = false,
show_trailing_blankline_indent = false,
use_treesitter = true
}