diff options
Diffstat (limited to 'config/old/vim')
| -rw-r--r-- | config/old/vim/.vimrc | 12 | 
1 files changed, 11 insertions, 1 deletions
diff --git a/config/old/vim/.vimrc b/config/old/vim/.vimrc index 768cff3..85a9021 100644 --- a/config/old/vim/.vimrc +++ b/config/old/vim/.vimrc @@ -33,7 +33,6 @@ set updatetime=100  set tabstop=4 shiftwidth=4 " Turn tab to spaces  set backspace=2 backspace=indent,eol,start " Turn backspaces into tabspaces -set incsearch " Incremental search  set clipboard=unnamed " Use system primary clipboard  set number " Set (absolute) line numbers @@ -45,10 +44,21 @@ set cursorline " Highlight line at cursor  set ruler " Show cursor and progress in file  set wildmenu " Show command options (autocomplete) +set hlsearch +set incsearch +set smartcase ignorecase +set path += ** + +set scrolloff=8 +set smartindent +  set mouse= "nomouse  set encoding=utf-8 " Set encoding  set history=200 " Keep a lot more command history +set noswapfile nobackup +set formatoptions = "cqrnj" +  """"""""""""COLORSCHEME"""""""""""""""""""""""  colo nord  hi! Normal ctermbg=NONE guibg=NONE  | 
