mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Switch from vundle to vim-plug
This commit is contained in:
parent
1bc839b375
commit
22a550804a
|
@ -73,22 +73,28 @@ noremap <silent> <C-Right> :vertical resize -3<CR>
|
||||||
noremap <silent> <C-Up> :resize +3<CR>
|
noremap <silent> <C-Up> :resize +3<CR>
|
||||||
noremap <silent> <C-Down> :resize -3<CR>
|
noremap <silent> <C-Down> :resize -3<CR>
|
||||||
|
|
||||||
|
"
|
||||||
|
map <C-c> "+y
|
||||||
|
vnoremap <C-v> "+p
|
||||||
|
|
||||||
" Vundle
|
" Vundle
|
||||||
filetype off " required
|
filetype off " required
|
||||||
set nocompatible " be iMproved, required
|
set nocompatible " be iMproved, required
|
||||||
|
|
||||||
set rtp+=~/.local/share/vim/bundle/Vundle.vim
|
"set rtp+=~/.local/share/vim/bundle/Vundle.vim
|
||||||
call vundle#begin('~/.local/share/vim/bundle')
|
"all vundle#begin('~/.local/share/vim/bundle')
|
||||||
|
call plug#begin('~/.local/share/vim/plugged')
|
||||||
|
|
||||||
Plugin 'VundleVim/Vundle.vim' " Let vundle manage itself
|
Plug 'VundleVim/Vundle.vim' " Let vundle manage itself
|
||||||
Plugin 'airblade/vim-gitgutter' " Shows Git diff
|
Plug 'airblade/vim-gitgutter' " Shows Git diff
|
||||||
Plugin 'joshdick/onedark.vim' " OneDark theme
|
Plug 'joshdick/onedark.vim' " OneDark theme
|
||||||
Plugin 'vim-airline/vim-airline' " AirLine statusline
|
Plug 'vim-airline/vim-airline' " AirLine statusline
|
||||||
Plugin 'vim-airline/vim-airline-themes' " AirLine statusline themes
|
Plug 'vim-airline/vim-airline-themes' " AirLine statusline themes
|
||||||
Plugin 'vim-syntastic/syntastic' " Syntax checking
|
Plug 'vim-syntastic/syntastic' " Syntax checking
|
||||||
Plugin 'vim-python/python-syntax' " Python highlighting
|
Plug 'vim-python/python-syntax' " Python highlighting
|
||||||
|
|
||||||
call vundle#end()
|
"call vundle#end()
|
||||||
|
call plug#end()
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
||||||
" User interface / Theme
|
" User interface / Theme
|
||||||
|
|
2801
home/.local/share/vim/autoload/plug.vim
Normal file
2801
home/.local/share/vim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1 +0,0 @@
|
||||||
Subproject commit b255382d6242d7ea3877bf059d2934125e0c4d95
|
|
Loading…
Reference in a new issue