aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/%HOME%/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to '%HOME%/.vimrc')
-rw-r--r--%HOME%/.vimrc11
1 files changed, 11 insertions, 0 deletions
diff --git a/%HOME%/.vimrc b/%HOME%/.vimrc
index 8dcd2a9..61fd9a6 100644
--- a/%HOME%/.vimrc
+++ b/%HOME%/.vimrc
@@ -83,3 +83,14 @@ set cursorline
" Insert newline without entering insert mode.
nmap <S-Enter> O<Esc>
nmap <CR> o<Esc>
+
+" Disable opening directories, netrw is too confusing.
+" https://unix.stackexchange.com/q/297844
+for f in argv()
+ if isdirectory(f)
+ echomsg "Cowardly refusing to edit directory: " . f
+ quit
+ endif
+endfor
+
+let loaded_netrwPlugin=1