diff options
author | Oxbian <got.dacs@slmail.me> | 2023-10-08 00:02:04 +0200 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-10-08 00:02:04 +0200 |
commit | 462b2cd5de0fc7b301f329bc16dd6fd3aa2fdb07 (patch) | |
tree | d692d65e732263565c64714252c77a2522c123b5 /vim/options.vim | |
parent | 317950a3b6af900031db32b9e9e74723dce59e19 (diff) | |
download | vimrc-462b2cd5de0fc7b301f329bc16dd6fd3aa2fdb07.tar.gz vimrc-462b2cd5de0fc7b301f329bc16dd6fd3aa2fdb07.zip |
Removing fern for netrw
Diffstat (limited to 'vim/options.vim')
-rw-r--r-- | vim/options.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vim/options.vim b/vim/options.vim index 795330b..a115782 100644 --- a/vim/options.vim +++ b/vim/options.vim @@ -32,6 +32,12 @@ 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 set clipboard=unnamedplus |