diff options
author | Santo Cariotti <dcariotti24@gmail.com> | 2020-03-30 22:25:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 22:25:20 +0200 |
commit | a2297eecfd808f8ce76a6c906df2856967c26aec (patch) | |
tree | aa415f2ac3ec17d2e847296e219a4d725f1d162b | |
parent | 888a0d29a41d8ddadf6085d807acfaf80a05ce12 (diff) |
Update .vimrc
-rwxr-xr-x | .vimrc | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -9,13 +9,22 @@ Plugin 'VundleVim/Vundle.vim' Plugin 'rust-lang/rust.vim' Plugin 'airblade/vim-gitgutter' +augroup remember_folds + autocmd! + autocmd BufWinLeave * mkview + autocmd BufWinEnter * silent! loadview +augroup END + set ai set autoread set encoding=utf-8 set history=1000 set wildignore+=*.pyc set wrap -set paste +set hlsearch +set incsearch +set visualbell +set laststatus=2 call vundle#end() " required filetype plugin indent on " required @@ -23,4 +32,7 @@ set nocompatible " be iMproved, required filetype off " required syntax on + colorscheme gruvbox-hard +"colorscheme synthwave +set showcmd |