aboutsummaryrefslogtreecommitdiff
path: root/vim/config/os.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-10 21:43:48 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-10 21:43:48 +1300
commit6759051d4c92baf050393ae77e7506005d85f259 (patch)
tree04f1de317ef12697e4a148dd05bec6c17b8136c0 /vim/config/os.vim
parentRemove 'tildeop' setting (diff)
downloaddotfiles-6759051d4c92baf050393ae77e7506005d85f259.tar.gz
dotfiles-6759051d4c92baf050393ae77e7506005d85f259.zip
Move fedora.vim into os.vim
For OS-dependent config.
Diffstat (limited to 'vim/config/os.vim')
-rw-r--r--vim/config/os.vim8
1 files changed, 8 insertions, 0 deletions
diff --git a/vim/config/os.vim b/vim/config/os.vim
new file mode 100644
index 00000000..ff6cadfc
--- /dev/null
+++ b/vim/config/os.vim
@@ -0,0 +1,8 @@
+" Fedora's default environment adds a few auto commands that I don't like,
+" including the 'return to previous position in buffer' one; fortunately
+" they're nice enough to group the commands, so I can just clear them
+if has('autocmd')
+ augroup fedora
+ autocmd!
+ augroup END
+endif