diff options
author | Oxbian <got.dacs@slmail.me> | 2023-10-08 12:16:11 +0200 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-10-08 12:16:11 +0200 |
commit | 1d4561690b8a267cd0ebf909a37f4ed320433a53 (patch) | |
tree | 7335d5dbb80854d38613369688ebdc4bc640f13b /vim/options.vim | |
parent | 36cad3b53b2878fc6e1cbdf4f942d76988e04750 (diff) | |
download | vimrc-1d4561690b8a267cd0ebf909a37f4ed320433a53.tar.gz vimrc-1d4561690b8a267cd0ebf909a37f4ed320433a53.zip |
Removing vim-airline and using custom statusline
Diffstat (limited to 'vim/options.vim')
-rw-r--r-- | vim/options.vim | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/vim/options.vim b/vim/options.vim index a115782..7ffd2a9 100644 --- a/vim/options.vim +++ b/vim/options.vim @@ -12,7 +12,6 @@ set number " Show line number set relativenumber " Show relative line number set cursorline " Select the current line set showmatch " Show matching brackets when overred -set laststatus=2 " Fix for tabline set noshowmode " Disable the -- INSERTION -- default comment set so=7 " Set 7 lines to the cursor - when moving vertically @@ -32,11 +31,7 @@ set preserveindent " Preserve indent style set autowrite " Automatically write the file on certain actions set autoread " Automatically read extern changes on the file -" Netrw (filetree built-in vim) -let g:netrw_keepdir = 0 " Reload buffer usefull when moving or removing file -let g:netrw_winsize = 10 " Size of filetree buffer -let g:netrw_banner = 0 " Removing netrw banner -let g:netrw_localcopydircmd = 'cp -r' " Changing copy command to add recursive copy + " System if has('unnamedplus') " ALlow OS & vim clipboard sync |