You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
879 B
VimL

" pathogen
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
" turn off vi compatability
set nocompatible
" turn off swapfiles
set noswapfile
" persistent undo (>7.3)
set undodir=~/.vim/undodir
set undofile
" indentation
filetype plugin on
filetype indent on
set autoindent
set smartindent
" search
set hlsearch
set incsearch
set showmatch
" tab stops
set expandtab
set smarttab
set tabstop=4
set shiftwidth=4
set autoread
set mat=2
set ruler
set nohls
au BufNewFile,BufRead *.less set filetype=less
syntax enable
" solarized colors
set background=dark
let g:solarized_termtrans=1
let g:solarized_termcolors=256
let g:solarized_contrast="high"
let g:solarized_visibility="high"
colorscheme solarized
" some maps
nnoremap <silent> <leader>n :NERDTreeToggle <CR>
nnoremap <silent> <leader>t :TagbarToggle <CR>
let g:EasyMotion_leader_key = '<Leader>e'