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

Merge branch 'master' of github.com:aquatix/dotfiles

This commit is contained in:
Michiel Scholten
2014-09-22 09:18:39 +02:00
2 changed files with 7 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ alias takeover="tmux detach -a"
# 20140825 as there is no `pip upgrade`, this has to do
alias pip_upgrade="pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U"
# 20140912
# 20140908 reload tmux config
alias tmux_reload="tmux source-file ~/.tmux.conf"
function fuck() {

7
.vimrc
View File

@@ -25,8 +25,13 @@ Plugin 'mhinz/vim-signify'
Plugin 'tpope/vim-sensible'
" Nice colour scheme
Plugin 'jnurmine/Zenburn.git'
" Quick file system tree, mapped to Ctrl+n for quick toggle
Plugin 'scrooloose/nerdtree'
map <C-n> :NERDTreeToggle<CR>
" close vim if the only window left open is a NERDTree
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif
" ==
" == Content convenience
" Python autocompletion
Plugin 'davidhalter/jedi-vim'