Skip to content

Commit

Permalink
Added sahara colorscheme and golang plugins along with updates to sev…
Browse files Browse the repository at this point in the history
…eral bundles.
  • Loading branch information
brewerja committed Oct 30, 2012
1 parent 21cd31d commit eb5476b
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .gitmodules
Expand Up @@ -45,3 +45,9 @@
[submodule "bundle/syntastic"]
path = bundle/syntastic
url = https://github.com/scrooloose/syntastic.git
[submodule "bundle/sahara"]
path = bundle/sahara
url = https://github.com/tejr/sahara
[submodule "bundle/vim-golang"]
path = bundle/vim-golang
url = https://github.com/jnwhiteh/vim-golang.git
2 changes: 1 addition & 1 deletion bundle/nerdtree
2 changes: 1 addition & 1 deletion bundle/pathogen
1 change: 1 addition & 0 deletions bundle/sahara
Submodule sahara added at f48633
2 changes: 1 addition & 1 deletion bundle/syntastic
1 change: 1 addition & 0 deletions bundle/vim-golang
Submodule vim-golang added at a60655
17 changes: 14 additions & 3 deletions vimrc
Expand Up @@ -8,6 +8,7 @@ call pathogen#helptags()
set nocompatible " Use Vim settings, rather than Vi settings.
set backspace=indent,eol,start " Make backspace behave in a sane manner.
syntax on " Switch syntax highlighting on.
filetype off " Needed to load ftdetect files from pathogen
filetype plugin indent on " Enable file type detection and do language-dependent indenting.

" Toggle auto-indenting for code paste.
Expand Down Expand Up @@ -48,9 +49,6 @@ set hidden
" Set mouse on for all modes.
set mouse=a

" Change EasyMotion leader to a single leader.
let g:EasyMotion_leader_key='<Leader>'

" Clear last search highlighting with space.
nnoremap <Space> :noh<CR>
Expand All @@ -60,3 +58,16 @@ set incsearch hlsearch
set ruler " Show location in the file at all times.
set ignorecase smartcase " Ignore case in searches unless a captial letter is used in query
set noeb vb t_vb= " Turn off bells and beeps.

" Settings for C programming
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
autocmd QuickFixCmdPost * :cwindow

" On window splits, open new buffers to the right and below
set splitright
set splitbelow

set lines=50 columns=85

0 comments on commit eb5476b

Please sign in to comment.