]> git.phdru.name Git - dotfiles.git/blobdiff - .vimrc
Feat(.vim/ftplugin/python.vim): Do not call chmod if not required
[dotfiles.git] / .vimrc
diff --git a/.vimrc b/.vimrc
index 02e779069d1f1ae8afc37c626f35fa2953261da1..4b7fdf81137662374cecbae71c9456d9deda1816 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -55,6 +55,7 @@ set sidescroll=1  " The minimal number of columns to scroll horizontally
 
 " 5 highlighting
 
+colorscheme phd
 set nohlsearch    " Stop the search highlighting
 
 " 6 multiple windows
@@ -124,11 +125,17 @@ endif
 
 " 20 the swap file
 
+let myUndoDir = expand('~/tmp/vim/undo')
+if !isdirectory(myUndoDir)
+    " Create dirs
+    call mkdir(myUndoDir, 'p')
+endif
+
 " list of directories for the swap file; remove . (the current directory)
 if has("win32")
-   set directory=$TEMP//,c:/tmp//,c:/temp//
+   set directory=~/tmp/vim//,$TEMP//,c:/tmp//,c:/temp//
 else
-   set directory=~/tmp//,/var/tmp//,/tmp//
+   set directory=~/tmp/vim//,~/tmp//,/var/tmp//,/tmp//
 endif
 " if a directory ends in two path separators "//"
 " or "\\", the swap file name will be built from the complete path to
@@ -143,6 +150,12 @@ set wildignore+=*.py[co] " Ignore these patterns when completing file names
 set wildmenu      " command-line completion shows a list of matches
 set wildmode=longest,list:longest,full " Bash-vim completion behavior
 
+" Keep undo history across sessions by storing it in a file
+if has('persistent_undo')
+    let &undodir = myUndoDir
+    set undofile
+endif
+
 " 22 executing external commands
 
 if has("filterpipe")
@@ -249,6 +262,30 @@ else
          let &t_fs = "\007"
       endif
    endif
+
+   " Automatically set paste mode in Vim when pasting in bracketed paste mode
+   " https://coderwall.com/p/if9mda/automatically-set-paste-mode-in-vim-when-pasting-in-insert-mode
+   function! WrapForTmux(s)
+     if !exists('$TMUX')
+       return a:s
+     endif
+
+     let tmux_start = "\<Esc>Ptmux;"
+     let tmux_end = "\<Esc>\\"
+
+     return tmux_start . substitute(a:s, "\<Esc>", "\<Esc>\<Esc>", 'g') . tmux_end
+   endfunction
+
+   let &t_SI .= WrapForTmux("\<Esc>[?2004h")
+   let &t_EI .= WrapForTmux("\<Esc>[?2004l")
+
+   function! XTermPasteBegin()
+     set pastetoggle=<Esc>[201~
+     set paste
+     return ""
+   endfunction
+
+   inoremap <special> <expr> <Esc>[200~ XTermPasteBegin()
 endif
 
 " Multiline comments often confuse vim syntax highlighting - these maps
@@ -270,6 +307,8 @@ autocmd BufWritePost ~/.vimrc source ~/.vimrc | syntax on
 if version >= 700
 " Save all files before running any quickfix command (grep, makeprg, etc.)
 autocmd QuickFixCmdPre * wall
+" automatically close quickfix if it's the only window left
+autocmd WinEnter * if winnr('$') == 1 && &buftype == "quickfix" | quit | endif
 endif
 
 " Syntax highlighting
@@ -524,6 +563,19 @@ if exists("$SLOWTERM")
 endif
 
 
+if has("python")
+python << END_OF_PYTHON
+import sys, os
+
+virtualenv_dir = os.environ.get('VIRTUAL_ENV')
+if virtualenv_dir:
+    sys.path.insert(0, virtualenv_dir)
+    activate_this = os.path.join(virtualenv_dir, 'bin', 'activate_this.py')
+    execfile(activate_this, dict(__file__=activate_this))
+END_OF_PYTHON
+endif
+
+
 " ----------
 " From http://slobin.pp.ru/vim/_vimrc.html