Commit 718ecf75 authored by Murukesh Mohanan's avatar Murukesh Mohanan

plugin update; auto test.* open fix

parent c3016816
Subproject commit e66d1f1dddb4f27624715197b97a5fcff1944764
Subproject commit 674db42eefd9b2ac9a3bea92e99acf53d4f95fcd
Subproject commit dbb4d3236bfa1d7fd14ca0604e101ef82be5ebc7
Subproject commit 9d1196f40aac7bbef5cec0c9307e80e207a4dfca
Subproject commit de0106e839e6ee21a5dd3c42f1abb7d79d931bdd
Subproject commit d8af5028ecd541f721dab769479092b643f47a76
Subproject commit a1cfa1175303942ca8cd32454d324a9e56b046fa
Subproject commit de369ba2a1ed2195c5a50dd3a396d3760050d171
......@@ -76,33 +76,33 @@ endfunction
command! -nargs=? -complete=help H call s:Help2Url (<f-args>)
noremap ; :
noremap , ;
nnoremap < :tabp<CR>
nnoremap > :tabn<CR>
noremap <leader>, :bp<CR>
noremap <leader>. :bn<CR>
command! C let @/=""
cnoremap w!! w !sudo tee >/dev/null %
noremap <leader>P "*p
noremap <leader>p "+p
noremap <leader>Y "*y
noremap <leader>y "+y
inoremap <Down> <C-o>gj
inoremap <Up> <C-o>gk
nnoremap <Down> gj
nnoremap <Up> gk
noremap ; :
noremap , ;
nnoremap < :tabp<CR>
nnoremap > :tabn<CR>
noremap <leader>, :bp<CR>
noremap <leader>. :bn<CR>
command! C let @/=""
cnoremap w!! w !sudo tee >/dev/null %
noremap <leader>P "*p
noremap <leader>p "+p
noremap <leader>Y "*y
noremap <leader>y "+y
inoremap <Down> <C-o>gj
inoremap <Up> <C-o>gk
nnoremap <Down> gj
nnoremap <Up> gk
execute pathogen#infect()
colorscheme molokai
highlight Normal ctermbg=none
highlight Normal ctermbg=none
highlight NonText ctermbg=none
highlight Visual ctermbg=DarkGrey
highlight Visual ctermbg=DarkGrey
" From http://vi.stackexchange.com/questions/258/
autocmd BufWritePre *.sh if !filereadable(expand('%')) | let b:is_new = 1 | endif
autocmd BufWritePost *.sh if get(b:, 'is_new', 0) | silent execute '!chmod +x %' | endif
autocmd BufWritePre *.sh,*.py if !filereadable(expand('%')) | let b:is_new = 1 | endif
autocmd BufWritePost *.sh,*.py if get(b:, 'is_new', 0) | silent execute '!chmod +x %' | endif
let g:SuperTabDefaultCompletionType = "context"
let g:SuperTabClosePreviewOnPopupClose = 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment