1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

Some minor cleanups and tweaks

This commit is contained in:
Michiel Scholten
2014-11-29 11:33:18 +01:00
parent dfe133a8a3
commit c178b58b5f

10
.vimrc
View File

@@ -5,6 +5,8 @@ call vundle#begin()
" let Vundle manage Vundle, required " let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim' Plugin 'gmarik/Vundle.vim'
" == UI ======
" Display tags of the current file ordered by scope " Display tags of the current file ordered by scope
" You need ctags: `sudo apt-get install exuberant-ctags` or " You need ctags: `sudo apt-get install exuberant-ctags` or
" `brew install ctags` for example " `brew install ctags` for example
@@ -14,8 +16,6 @@ nmap <F8> :TagbarToggle<CR>
" arbitrary sources like files, buffers, recently used files or registers. " arbitrary sources like files, buffers, recently used files or registers.
Plugin 'Shougo/unite.vim' Plugin 'Shougo/unite.vim'
" == UI
" Nice statusbar, alternative for powerline. Get powerline font for best " Nice statusbar, alternative for powerline. Get powerline font for best
" looking result " looking result
Plugin 'bling/vim-airline' Plugin 'bling/vim-airline'
@@ -45,7 +45,7 @@ let g:ctrlp_dotfiles = 0
let g:ctrlp_switch_buffer = 0 let g:ctrlp_switch_buffer = 0
" == Content convenience " == Content convenience ======
" Python autocompletion " Python autocompletion
Plugin 'davidhalter/jedi-vim' Plugin 'davidhalter/jedi-vim'
@@ -84,13 +84,11 @@ set dictionary+=/usr/share/dict/words
" use ctrl-n ctrl-n instead of ctrl-x ctrl-k " use ctrl-n ctrl-n instead of ctrl-x ctrl-k
set complete-=k complete+=k set complete-=k complete+=k
" 2006-04-24
set smartcase
" ignorecase plus smartcase make searches case-insensitive except when you " ignorecase plus smartcase make searches case-insensitive except when you
" include upper-case characters (so /foo matches FOO and fOo, but /FOO only " include upper-case characters (so /foo matches FOO and fOo, but /FOO only
" matches the former) " matches the former)
set ignorecase set ignorecase
" 2006-04-24
set smartcase set smartcase
" reload file when changes happen in other editors " reload file when changes happen in other editors