1
0

Switched to vim-plug instead of vundle.

This commit is contained in:
2022-01-14 16:51:42 +01:00
parent 1ad6affebb
commit 086598ac6c
3 changed files with 30 additions and 32 deletions

2
.gitignore vendored
View File

@@ -1,2 +1,2 @@
bundle/ plugged/
spell/ spell/

2
coc-settings.json Normal file
View File

@@ -0,0 +1,2 @@
{
}

View File

@@ -1,25 +1,23 @@
set nocompatible set nocompatible
filetype off filetype off
set rtp+=~/.config/nvim/bundle/Vundle.vim call plug#begin("~/.config/nvim/plugged")
call vundle#begin('~/.config/nvim/bundle') Plug 'tpope/vim-fugitive'
Plugin 'VundleVim/Vundle.vim' Plug 'vim-airline/vim-airline'
Plugin 'tpope/vim-fugitive' Plug 'vim-airline/vim-airline-themes'
Plugin 'vim-airline/vim-airline' Plug 'scrooloose/nerdcommenter'
Plugin 'vim-airline/vim-airline-themes' "Plug 'ervandew/supertab'
Plugin 'scrooloose/nerdcommenter' Plug 'javier-lopez/sprunge.vim'
Plugin 'ervandew/supertab' Plug 'vim-scripts/Trailer-Trash'
Plugin 'javier-lopez/sprunge.vim' Plug 'vim-scripts/bad-whitespace'
"Plugin 'vim-syntastic/syntastic' Plug 'alvan/vim-closetag'
Plugin 'vim-scripts/Trailer-Trash' Plug 'aklt/plantuml-syntax'
Plugin 'vim-scripts/bad-whitespace' Plug 'danro/rename.vim'
Plugin 'alvan/vim-closetag' Plug 'ciaranm/detectindent'
Plugin 'aklt/plantuml-syntax' Plug 'jiangmiao/auto-pairs'
Plugin 'danro/rename.vim' Plug 'antoyo/vim-licenses'
Plugin 'ciaranm/detectindent' Plug 'altercation/vim-colors-solarized'
Plugin 'jiangmiao/auto-pairs' Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plugin 'antoyo/vim-licenses' call plug#end()
Plugin 'altercation/vim-colors-solarized'
call vundle#end()
filetype plugin indent on filetype plugin indent on
" to ignore plugin indent changes, instead use: " to ignore plugin indent changes, instead use:
"filetype plugin on "filetype plugin on
@@ -46,6 +44,15 @@ set foldmethod=syntax
set foldlevel=0 set foldlevel=0
set foldnestmax=1 set foldnestmax=1
" CoC settings
"inoremap <silent><expr> <TAB>
"\ pumvisible() ? "\<C-n>" :
"\ <SID>check_back_space() ? "\<TAB>" :
"\ coc#refresh()
"inoremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>"
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
" syntax highlighting " syntax highlighting
syntax on syntax on
set background=dark set background=dark
@@ -91,17 +98,6 @@ let g:airline_symbols.whitespace = 'Ξ'
let g:airline#extensions#whitespace#mixed_indent_algo = 2 let g:airline#extensions#whitespace#mixed_indent_algo = 2
let g:airline#extensions#whitespace#checks = [ 'indent', 'long'] let g:airline#extensions#whitespace#checks = [ 'indent', 'long']
" syntastic
"set statusline+=%#warningmsg#
"set statusline+=%{SyntasticStatuslineFlag()}
"set statusline+=%*
"let g:syntastic_cpp_checkers = [ "g++" ]
"let g:syntastic_always_populate_loc_list = 1
"let g:syntastic_auto_loc_list = 1
"let g:syntastic_check_on_open = 1
"let g:syntastic_check_on_wq = 0
" vim-licenses " vim-licenses
let g:licenses_copyright_holders_name = 'Ortega Froysa, Nicolás <nicolas@ortegas.org>' let g:licenses_copyright_holders_name = 'Ortega Froysa, Nicolás <nicolas@ortegas.org>'
let g:licenses_authors_name = 'Ortega Froysa, Nicolás <nicolas@ortegas.org>' let g:licenses_authors_name = 'Ortega Froysa, Nicolás <nicolas@ortegas.org>'