nvim: remove unused parts
This commit is contained in:
parent
b62e90a96a
commit
baf314f965
1 changed files with 1 additions and 20 deletions
|
@ -7,26 +7,15 @@ endif
|
||||||
|
|
||||||
call plug#begin('~/.local/share/nvim/plugged')
|
call plug#begin('~/.local/share/nvim/plugged')
|
||||||
|
|
||||||
" Nifty stuff
|
|
||||||
Plug 'jamessan/vim-gnupg'
|
|
||||||
|
|
||||||
" Some config/whitespace automation
|
" Some config/whitespace automation
|
||||||
Plug 'tpope/vim-sleuth'
|
Plug 'tpope/vim-sleuth'
|
||||||
Plug 'ntpeters/vim-better-whitespace'
|
Plug 'ntpeters/vim-better-whitespace'
|
||||||
|
|
||||||
" Git
|
|
||||||
Plug 'airblade/vim-gitgutter'
|
|
||||||
Plug 'tpope/vim-fugitive'
|
|
||||||
|
|
||||||
" linting/formatting/completion
|
|
||||||
Plug 'neomake/neomake'
|
|
||||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
|
||||||
|
|
||||||
"Better syntax
|
"Better syntax
|
||||||
Plug 'lervag/vimtex', {'for': 'tex'}
|
Plug 'lervag/vimtex', {'for': 'tex'}
|
||||||
Plug 'vivien/vim-linux-coding-style'
|
Plug 'vivien/vim-linux-coding-style'
|
||||||
Plug 'NLKNguyen/c-syntax.vim'
|
Plug 'NLKNguyen/c-syntax.vim'
|
||||||
Plug 'hdima/python-syntax'
|
Plug 'vim-python/python-syntax'
|
||||||
Plug 'rust-lang/rust.vim', {'for': 'rust'}
|
Plug 'rust-lang/rust.vim', {'for': 'rust'}
|
||||||
Plug 'dag/vim-fish', {'for': 'fish'}
|
Plug 'dag/vim-fish', {'for': 'fish'}
|
||||||
Plug 'LnL7/vim-nix', {'for': 'nix'}
|
Plug 'LnL7/vim-nix', {'for': 'nix'}
|
||||||
|
@ -35,8 +24,6 @@ Plug 'cespare/vim-toml'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
set laststatus=1
|
|
||||||
|
|
||||||
"" TeX and co stuff
|
"" TeX and co stuff
|
||||||
" disable TeX commands concealing
|
" disable TeX commands concealing
|
||||||
let g:tex_conceal = ''
|
let g:tex_conceal = ''
|
||||||
|
@ -110,9 +97,3 @@ nnoremap U :echo "NOPE!"<CR>
|
||||||
|
|
||||||
" do not conceal stuff
|
" do not conceal stuff
|
||||||
set conceallevel=0
|
set conceallevel=0
|
||||||
|
|
||||||
" deoplete
|
|
||||||
let g:deoplete#enable_at_startup = 1
|
|
||||||
|
|
||||||
" neomake
|
|
||||||
call neomake#configure#automake('rw', 1000)
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue