Nvim: modernize plugin configuration
This commit is contained in:
@@ -22,7 +22,6 @@ Plug 'ms-jpq/coq_nvim', {'branch': 'coq'}
|
||||
Plug 'ms-jpq/coq.artifacts', {'branch': 'artifacts'}
|
||||
Plug 'ms-jpq/coq.thirdparty', {'branch': '3p'}
|
||||
|
||||
Plug 'wellle/context.vim'
|
||||
"Plug 'dbeniamine/cheat.sh-vim'
|
||||
Plug 'puremourning/vimspector'
|
||||
"Plug 'vim-test/vim-test'
|
||||
@@ -33,7 +32,11 @@ Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
||||
Plug 'nvim-treesitter/playground'
|
||||
Plug 'p00f/nvim-ts-rainbow'
|
||||
Plug 'nvim-treesitter/nvim-treesitter-textobjects'
|
||||
Plug 'romgrk/nvim-treesitter-context'
|
||||
|
||||
Plug 'cdelledonne/vim-cmake'
|
||||
|
||||
Plug 'andymass/vim-matchup'
|
||||
" }}}
|
||||
|
||||
" Completion {{{
|
||||
@@ -88,20 +91,21 @@ Plug 'lukas-reineke/virt-column.nvim'
|
||||
"Plug 'jez/vim-superman' "vman application
|
||||
Plug 'glacambre/firenvim'
|
||||
"Plug 'JMcKiern/vim-shoot'
|
||||
Plug 'mrjones2014/legendary.nvim'
|
||||
" }}}
|
||||
|
||||
" Note taking {{{
|
||||
Plug 'vimwiki/vimwiki'
|
||||
Plug 'michal-h21/vimwiki-sync'
|
||||
Plug 'michal-h21/vim-zettel'
|
||||
"Plug 'michal-h21/vim-zettel'
|
||||
" }}}
|
||||
|
||||
" Colorschemes {{{
|
||||
Plug 'jaredgorski/spacecamp'
|
||||
Plug 'lifepillar/vim-gruvbox8'
|
||||
Plug 'dylanaraps/wal'
|
||||
Plug 'vim-airline/vim-airline' | Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'tanvirtin/monokai.nvim'
|
||||
"Plug 'jaredgorski/spacecamp'
|
||||
"Plug 'lifepillar/vim-gruvbox8'
|
||||
Plug 'dylanaraps/wal'
|
||||
"Plug 'tanvirtin/monokai.nvim'
|
||||
Plug 'marko-cerovac/material.nvim'
|
||||
" }}}
|
||||
"
|
||||
@@ -130,12 +134,12 @@ set background=dark
|
||||
"colorscheme wal
|
||||
let g:material_style = "deep ocean"
|
||||
colorscheme material
|
||||
highlight MatchParen cterm=underline ctermbg=black ctermfg=NONE
|
||||
highlight VirtColumn ctermfg=DarkGrey ctermbg=NONE
|
||||
"highlight MatchParen cterm=underline ctermbg=black ctermfg=NONE
|
||||
"highlight VirtColumn ctermfg=DarkGrey ctermbg=NONE
|
||||
set listchars=tab:▸\ ,trail:¬
|
||||
set list
|
||||
hi clear SpellBad
|
||||
hi SpellBad cterm=underline
|
||||
"hi clear SpellBad
|
||||
"hi SpellBad cterm=underline
|
||||
|
||||
set tabstop=2
|
||||
set shiftwidth=2
|
||||
@@ -154,6 +158,8 @@ set scrolloff=10
|
||||
|
||||
set inccommand="split"
|
||||
|
||||
set lazyredraw
|
||||
|
||||
" space one line, home,end globally increase/decrease
|
||||
nnoremap <Home> zc
|
||||
nnoremap <End> zo
|
||||
@@ -207,14 +213,7 @@ set updatetime=300
|
||||
set shortmess+=c
|
||||
set shortmess-=F
|
||||
|
||||
" Always show the signcolumn, otherwise it would shift the text each time
|
||||
" diagnostics appear/become resolved.
|
||||
if has("patch-8.1.1564")
|
||||
" Recently vim can merge signcolumn and number column into one
|
||||
set signcolumn=number
|
||||
else
|
||||
set signcolumn=yes
|
||||
endif
|
||||
set signcolumn=number
|
||||
|
||||
set wildmode=longest,list,full
|
||||
|
||||
|
||||
Reference in New Issue
Block a user