aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2011-11-28 22:07:52 +1300
committerTom Ryder <tom@sanctum.geek.nz>2011-11-28 22:07:52 +1300
commit1ac53aab29cabc486c4e8380a28ff0e8e0f93784 (patch)
tree9788283f3e5b8caaf01d49d2b860d013c16a9841 /vim/vimrc
parenttmux doesn't work very well on our SSH gateway at work -- I'll delay the swit... (diff)
downloaddotfiles-1ac53aab29cabc486c4e8380a28ff0e8e0f93784.tar.gz
dotfiles-1ac53aab29cabc486c4e8380a28ff0e8e0f93784.zip
Gotta be honest with myself, just not using these plugins. Don't really need Pathogen.
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc17
1 files changed, 9 insertions, 8 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 774b6b79..cc912696 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -1,10 +1,6 @@
" Compatibility
set nocompatible
-" Plugins
-silent! call pathogen#infect()
-silent! call pathogen#helptags()
-
" Filetypes
if has("autocmd")
filetype on
@@ -12,6 +8,9 @@ if has("autocmd")
filetype indent on
endif
+" Backups
+set nobackup
+
" Colors
if has("syntax")
syntax enable
@@ -46,10 +45,6 @@ endif
" History
set history=100
-" Indenting
-set autoindent
-set smartindent
-
" Leaders
nnoremap <leader>h :set hlsearch!<CR>
nnoremap <leader>l :set list!<CR>
@@ -59,6 +54,9 @@ nnoremap <leader>r :set relativenumber!<CR>
nnoremap <leader>s :set spell!<CR>
nnoremap <leader>w :set wrap!<CR>
+" Macros
+set lazyredraw
+
" Miscellaneous
set backspace=indent,eol,start
set scrolloff=1
@@ -74,6 +72,9 @@ endif
set splitbelow
set splitright
+" Swaps
+set noswapfile
+
" Typos
command W w
command Wq wq