|
diff --git a/.vimrc b/.vimrc
|
| 1 |
call plug#begin() |
1 |
call plug#begin() |
| 2 |
Plug 'tpope/vim-commentary' |
|
|
| 3 |
Plug 'tpope/vim-fugitive' |
2 |
Plug 'tpope/vim-fugitive' |
|
|
3 |
Plug 'tpope/vim-commentary' |
| 4 |
Plug 'ctrlpvim/ctrlp.vim' |
4 |
Plug 'ctrlpvim/ctrlp.vim' |
| 5 |
Plug 'dense-analysis/ale' |
5 |
Plug 'dense-analysis/ale' |
| 6 |
Plug 'mitjafelicijan/ungabunga' |
|
|
| 7 |
call plug#end() |
6 |
call plug#end() |
| 8 |
|
7 |
|
| 9 |
set nocompatible laststatus=2 encoding=utf8 spelllang=en_us |
8 |
set nocompatible laststatus=2 encoding=utf8 spelllang=en_us |
| 10 |
set number relativenumber autoindent signcolumn=yes cursorline ignorecase |
9 |
set number relativenumber autoindent signcolumn=yes cursorline ignorecase |
| 11 |
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
10 |
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
| 12 |
colorscheme ungabunga |
11 |
colorscheme wildcharm |
| 13 |
|
12 |
|
| 14 |
nnoremap <C-Right> :bnext<cr> |
13 |
nnoremap <C-Right> :bnext<cr> |
| 15 |
nnoremap <C-Left> :bprevious<cr> |
14 |
nnoremap <C-Left> :bprevious<cr> |
| ... |