Skip to content

Commit

Permalink
some updates from running a linux setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Breed committed Apr 16, 2012
1 parent 59e5b8d commit 45a5c6d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Expand Up @@ -82,9 +82,6 @@
[submodule "bundle/eco.vim"] [submodule "bundle/eco.vim"]
path = bundle/eco.vim path = bundle/eco.vim
url = https://github.com/jayferd/eco.vim.git url = https://github.com/jayferd/eco.vim.git
[submodule "bundle/command-t"]
path = bundle/command-t
url = https://github.com/wincent/Command-T.git
[submodule "bundle/paredit"] [submodule "bundle/paredit"]
path = bundle/paredit path = bundle/paredit
url = git@github.com:emezeske/paredit.vim url = git@github.com:emezeske/paredit.vim
Expand All @@ -94,3 +91,6 @@
[submodule "bundle/vim-commentary"] [submodule "bundle/vim-commentary"]
path = bundle/vim-commentary path = bundle/vim-commentary
url = https://github.com/tpope/vim-commentary.git url = https://github.com/tpope/vim-commentary.git
[submodule "bundle/command-t"]
path = bundle/command-t
url = https://github.com/wincent/Command-T.git
2 changes: 1 addition & 1 deletion bundle/command-t
7 changes: 4 additions & 3 deletions gvimrc
Expand Up @@ -25,6 +25,9 @@ if has("gui_macvim")
let g:gist_open_browser_after_post = 1 let g:gist_open_browser_after_post = 1
let g:gist_detect_filetype = 1 let g:gist_detect_filetype = 1


"set guifont=Menlo " Set default font
set guifont=Ubuntu\ Mono:h13
set transparency=4
endif endif


set cursorline " Highlight current line set cursorline " Highlight current line
Expand All @@ -36,10 +39,8 @@ set guioptions-=r


"color molokai "color molokai
color tomorrow_night color tomorrow_night
set transparency=4


"set guifont=Menlo " Set default font set novisualbell
set guifont=Ubuntu\ Mono:h13


" Project Tree " Project Tree
autocmd VimEnter * call s:CdIfDirectory(expand("<amatch>")) autocmd VimEnter * call s:CdIfDirectory(expand("<amatch>"))
Expand Down
3 changes: 2 additions & 1 deletion vimrc
Expand Up @@ -22,6 +22,7 @@ set autoindent " Copy indent from last line when starting new line.
set hidden " When a buffer is brought to foreground, remember undo history and marks. set hidden " When a buffer is brought to foreground, remember undo history and marks.


set colorcolumn=80 set colorcolumn=80
set t_Co=256


" Folding " Folding


Expand Down Expand Up @@ -271,4 +272,4 @@ if &term == "xterm-ipad"
inoremap <Leader><Tab> <Tab> inoremap <Leader><Tab> <Tab>
endif endif


color molokai color tomorrow_night

0 comments on commit 45a5c6d

Please sign in to comment.