Skip to content

Commit

Permalink
* update the vimrc to support the twitvim plugin. Noted how to creat…
Browse files Browse the repository at this point in the history
…e the twitvim.vim file needed to provide the login/functions for the plugin
  • Loading branch information
mitechie committed May 18, 2009
1 parent 91f2913 commit 0ac21cd
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions vimrc
Expand Up @@ -26,7 +26,7 @@
" C-r<tab> - show available snippets from snipMate
"
" - - shrink size of current split with minus sign
" = - increase size of current split with =
" + - increase size of current split with =
"
" Alt-, - increase split width
" Alt-. - decrease split width
Expand Down Expand Up @@ -68,6 +68,28 @@
" ,gc - :GitCommit
" <Enter> - In git-status buffer :GitAdd <cfile>
"
" TwitVim info:
" ~/.vim/twitvim.vim
"
" let twitvim_enable_python = 1
" let twitvim_login = "user:pass"
"
" function! Switch_to_twitter()
" let g:twitvim_api_root = "https://twitter.com"
" FriendsTwitter
" endfunction
"
" function! Switch_to_identica()
" let g:twitvim_api_root = "https://identi.ca/api"
" FriendsTwitter
" endfunction
"
" command! ToTwitter :call Switch_to_twitter()
" command! ToIdentica :call Switch_to_identica()
" nnoremap <F7> :ToIdentica<cr>
" nnoremap <F8> :ToTwitter<cr>
"
"
"
" basics sets {{{
let mapleader = "," " change the leader to be a comma vs slash
Expand Down Expand Up @@ -180,7 +202,7 @@ imap <C-W> <C-O><C-W>
" use - and + to resize horizontal splits
map - <C-W>-
map = <C-W>+
map + <C-W>+
" and for vsplits with alt-< or alt->
map <M-,> <C-W>>
Expand Down Expand Up @@ -449,4 +471,5 @@ nmap <silent> <leader>z :call BZRDiff()<CR>
" }}}


source ~/.vim/twitvim.vim

0 comments on commit 0ac21cd

Please sign in to comment.