diff options
author | Santo Cariotti <dcariotti24@gmail.com> | 2020-11-10 12:34:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 12:34:06 +0100 |
commit | fafa0b4a755f3e3006e7da6d848d1fc54625396d (patch) | |
tree | 9c4bed1c1f789ccdb17f8e8a412f71cb33de5deb | |
parent | ae647195474ced034227aba75e7e0269816dee3f (diff) |
Update .vimrc
Updated maps and added some plugins.
-rwxr-xr-x | vim/.vimrc | 86 |
1 files changed, 55 insertions, 31 deletions
@@ -1,5 +1,22 @@ autocmd! bufwritepost .vimrc source % +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() +Plugin 'VundleVim/Vundle.vim' + +Plugin 'rust-lang/rust.vim' +Plugin 'airblade/vim-gitgutter' " display git status of the file +Plugin 'vim-airline/vim-airline' " airline at bottom with insert, name, line etc. +Plugin 'junegunn/fzf', {'dir': '~/.fzf', 'do': './install --all'} | Plugin 'junegunn/fzf.vim' " fuzzy finder +Plugin 'luochen1990/rainbow' " color parentheses +Plugin 'dense-analysis/ale' " checker syntax +Plugin 'leafOfTree/vim-vue-plugin' +Plugin 'terryma/vim-multiple-cursors' +Plugin 'junegunn/goyo.vim' " ignore numbers and center text +Plugin 'tpope/vim-fugitive' " git extension for commit logs and etc. + +call vundle#end() " required + set term=screen-256color set clipboard=unnamed set mouse=a " click with mouse @@ -36,7 +53,17 @@ set splitright " split on right side set lazyredraw set ttyfast -"colorscheme gruvbox-hard +let g:fzf_preview_window = 'right:70%' +let g:ale_fix_on_save = 1 + +filetype plugin indent on +set nocompatible + +set showcmd " show commands at bottom +syntax on + +colorscheme miramare + augroup remember_folds autocmd! @@ -44,43 +71,40 @@ augroup remember_folds autocmd BufWinEnter * silent! loadview augroup END +" ------------ +" MAPS +" ----------- nnoremap tn :tabnew<CR> nnoremap ve :Vexplore<CR> -nnoremap :rt :RainbowToggle<CR> +nnoremap :rt :RainbowToggle + +" buffers +nnoremap ]b :bnext<CR> +nnoremap [b :bprev<CR> +nnoremap ,b :Buffers<CR> + +" tabs +nnoremap ]t :tabn<CR> +nnoremap [t :tabp<CR> +nnoremap ,t :tabs<CR> + +" only one window +nnoremap ,o :only<CR> + " mapping fzf commands " ff = open files explorer " co = open commits explorer " gf = open git ls-files " gs = open git status -nnoremap ff :Files .<CR> -nnoremap co :Commits<CR> -nnoremap gf :GFiles<CR> -nnoremap gs :GFiles?<CR> -nnoremap sp :set paste<CR> -nnoremap snp :set nopaste<CR> - -let g:fzf_preview_window = 'right:70%' -let g:ale_fix_on_save = 1 - -filetype plugin indent on -set nocompatible - -set showcmd " show commands at bottom -syntax on - -colorscheme miramare -set rtp+=~/.vim/bundle/Vundle.vim -call vundle#begin() -Plugin 'VundleVim/Vundle.vim' +nnoremap :ff :Files .<CR> +nnoremap :co :Commits<CR> +nnoremap :gf :GFiles<CR> +nnoremap :gs :GFiles?<CR> +nnoremap :gd :Git diff<CR> -Plugin 'rust-lang/rust.vim' -Plugin 'airblade/vim-gitgutter' " display git status of the file -Plugin 'vim-airline/vim-airline' " airline at bottom with insert, name, line etc. -Plugin 'junegunn/fzf', {'dir': '~/.fzf', 'do': './install --all'} | Plugin 'junegunn/fzf.vim' " fuzzy finder -Plugin 'luochen1990/rainbow' " color parentheses -Plugin 'dense-analysis/ale' " checker syntax -Plugin 'leafOfTree/vim-vue-plugin' -Plugin 'terryma/vim-multiple-cursors' +nnoremap :sp :set paste<CR> +nnoremap :snp :set nopaste<CR> -call vundle#end() " required +nnoremap :go :Goyo<CR> +nnoremap :!go :Goyo!<CR> |