diff options
author | Santo Cariotti <dcariotti24@gmail.com> | 2020-05-20 20:04:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 20:04:15 +0200 |
commit | 144fc5ca3784fdf2ff43437500ae82dbb207dfa6 (patch) | |
tree | f68bc196e2cf36aba11279fe31a38a412621ed72 | |
parent | cc410ed2e9eb8be3baad3d9eb6743875eb936580 (diff) |
tmux conf
-rwxr-xr-x | vim/.vimrc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,6 @@ autocmd! bufwritepost .vimrc source % +set term=screen-256color set clipboard=unnamed set mouse=a " click with mouse @@ -31,6 +32,10 @@ set listchars=eol:⏎,tab:»·,trail:ˑ,nbsp:⎵ set foldmethod=indent +set splitright " split on right side +set lazyredraw +set ttyfast + syntax on colorscheme miramare @@ -68,6 +73,7 @@ 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' call vundle#end() " required filetype plugin indent on " required |