update neoformat and indent-blankline
This commit is contained in:
parent
473162175c
commit
b9f4d3efda
@ -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 = ' '
|
||||
|
@ -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",
|
||||
|
@ -15,5 +15,4 @@ require('base16-colorscheme').setup({
|
||||
base0D = "#84a0c6",
|
||||
base0E = "#a093c7",
|
||||
base0F = "#e27878"
|
||||
|
||||
})
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user