Skip to content

Commit 239c78a

Browse files
committed
Integrated nerdcommenter into the latest
2 parents e02ea3d + 060540f commit 239c78a

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,6 @@
3131
[submodule "bundle/taglist"]
3232
path = bundle/taglist
3333
url = https://github.com/vim-scripts/taglist.vim.git
34+
[submodule "bundle/nerdcommenter"]
35+
path = bundle/nerdcommenter
36+
url = https://github.com/scrooloose/nerdcommenter.git

.vimrc

+13-13
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ set undolevels=1000
107107

108108

109109
if v:version >= 730
110-
set undofile " keep a persistent backup file
110+
set undofile " keep a persistent backup file
111111
endif
112112

113113

@@ -160,12 +160,12 @@ set nowb
160160

161161
" Load indentation rules according to the detected filetype.
162162
if has("autocmd")
163-
filetype indent on
163+
filetype indent on
164164
endif
165165

166166
" Source a global configuration file if available
167167
if filereadable("/etc/vim/vimrc.local")
168-
source /etc/vim/vimrc.local
168+
source /etc/vim/vimrc.local
169169
endif
170170

171171

@@ -192,17 +192,17 @@ call pathogen#infect()
192192

193193
" Solarized color scheme setup
194194
if has('gui_running')
195-
" use the light (yellowish background) scheme in GUI
196-
set background=light
195+
" use the light (yellowish background) scheme in GUI
196+
set background=light
197197
else
198-
" change to dark color scheme on terminal
199-
set background=dark
198+
" change to dark color scheme on terminal
199+
set background=dark
200200

201-
" if running on windows, degrade to 256 colors because the windows
202-
" terminal sucks very, very much and vim in GitBash looks awful
203-
if has('win32')
204-
let g:solarized_termcolors
205-
endif
201+
" if running on windows, degrade to 256 colors because the windows
202+
" terminal sucks very, very much and vim in GitBash looks awful
203+
if has('win32')
204+
let g:solarized_termcolors
205+
endif
206206

207207
endif
208208

@@ -219,7 +219,7 @@ nnoremap <f2> :TlistToggle<cr>
219219
220220
" force snipmate accept custom defined snippets on windows
221221
if has('win32')
222-
let g:snippets_dir="c:/Users/luke/.vim/bundle/snipmate/snippets/,c:/Users/luke/.vim/bundle/snipmate-custom-snippets/snippets"
222+
let g:snippets_dir="c:/Users/luke/.vim/bundle/snipmate/snippets/,c:/Users/luke/.vim/bundle/snipmate-custom-snippets/snippets"
223223
endif
224224

225225

bundle/nerdcommenter

Submodule nerdcommenter added at 93cdbaf

0 commit comments

Comments
 (0)