aboutsummaryrefslogtreecommitdiff
path: root/vim/config/files.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/config/files.vim')
-rw-r--r--vim/config/files.vim41
1 files changed, 0 insertions, 41 deletions
diff --git a/vim/config/files.vim b/vim/config/files.vim
deleted file mode 100644
index 61c3b6cb..00000000
--- a/vim/config/files.vim
+++ /dev/null
@@ -1,41 +0,0 @@
-" Load plugins for file types
-if has('autocmd')
- filetype plugin indent on
-endif
-
-" Bind \p to show filetype
-nnoremap <silent>
- \ <Leader>p
- \ :<C-U>set filetype?<CR>
-
-" Use UTF-8 by default wherever possible
-if has('multi_byte')
- set encoding=utf-8
-endif
-
-" Use all ancestors of current directory for :find
-if has('file_in_path')
- set path=**
-endif
-
-" If the Vim buffer for a file doesn't have any changes and Vim detects the
-" file has been altered, quietly update it
-set autoread
-
-" Save a file automatically if I change buffers or perform operations with the
-" argument list; this is particularly helpful for me as I don't use 'hidden'
-set autowrite
-
-" Don't use modelines at all, they're apparently potential security problems
-" and I've never used them anyway
-set nomodeline
-
-" I really like ZZ and ZQ, so I wrote a couple more mappings; ZW forces a
-" write of the current buffer, but doesn't quit, and ZA forces a write of all
-" buffers but doesn't quit
-nnoremap <silent>
- \ ZW
- \ :<C-U>write!<CR>
-nnoremap <silent>
- \ ZA
- \ :<C-U>wall!<CR>