Skip to content

Commit

Permalink
Leave GUI chrome mac-like by default. Make cmd-/ comment a line. Remo…
Browse files Browse the repository at this point in the history
…ve fufFinder call
  • Loading branch information
Michael Sofaer committed May 29, 2011
1 parent fc5e202 commit 453a61a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions vimrc
Expand Up @@ -69,7 +69,6 @@ au BufRead,BufNewFile Vagrantfile set filetype=ruby
au BufRead,BufNewFile soloistrc set filetype=ruby
" SETTINGS """"""""""""""""""""""""""""""""
"set t_Co=256
colorscheme vividchalk
colorscheme solarized
set background=dark

Expand All @@ -95,12 +94,6 @@ set guioptions-=T
set ignorecase
set smartcase

"no gui tab bar
set guioptions-=e

"no scrollbars
set guioptions-=rL

"font
set guifont=Inconsolata:h24 "Huge and not always there ...
set guifont=Monaco:h18
Expand Down Expand Up @@ -173,9 +166,6 @@ autocmd FileType ruby imap <Space>=><Space>
" reload .vimrc
map <leader>rv :source ~/.vimrc<CR>
" refresh the FuzzyFinder cache
map <leader>rf :FufRenewCache<CR>
" ctags again with gemhome added
map <leader>t :!/usr/local/bin/ctags -R --exclude=.git --exclude=log * `rvm gemhome`/*<CR>
map <leader>T :!rdoc -f tags -o tags * `rvm gemhome` --exclude=.git --exclude=log
Expand Down Expand Up @@ -235,6 +225,7 @@ let NERDSpaceDelims = 1

" Comment/uncomment lines.
map <leader>/ <plug>NERDCommenterToggle
map <D-/> <plug>NERDCommenterToggle
" Copy current file path to system pasteboard.
map <silent> <D-C> :let @* = expand("%")<CR>:echo "Copied: ".expand("%")<CR>
Expand Down Expand Up @@ -278,6 +269,15 @@ map <D-N> :CommandTFlush<CR>:CommandT<CR>
" Easy access to the shell.
map <Leader><Leader> :!

"no gui tab bar
"set guioptions-=e

"no scrollbars
"set guioptions-=rL



" (Keep this at the end.)
" Machine-local vim settings.
silent! source ~/.vimrc.local
Expand Down

0 comments on commit 453a61a

Please sign in to comment.