Updates to vim

* add vim-node
* add vim-json
This commit is contained in:
Nick Nisi
2013-10-12 09:22:34 -05:00
parent f0798e7093
commit 1434ffb21c
3 changed files with 13 additions and 1 deletions

View File

@@ -45,3 +45,5 @@ Bundle 'terryma/vim-multiple-cursors'
Bundle 'tpope/vim-repeat'
Bundle 'tonchis/to-github-vim'
Bundle 'sotte/presenting.vim'
Bundle 'moll/vim-node'
Bundle 'elzr/vim-json'

View File

@@ -4,6 +4,9 @@ snippet def
${1}
], function (${2}) {
});
snippet dec
declare(${1}, {
});
snippet req
require([
${1}
@@ -20,6 +23,9 @@ snippet :f
snippet fun
function ${1:name}(${2:args}) {
}
snippet iife
(function () {
})();
# log snippets
snippet log
console.log(${1});

View File

@@ -76,9 +76,12 @@ if has("autocmd") && !exists("autocommands_loaded")
autocmd BufWritePost .vimrc.local source %
" save all files on focus lost, ignoring warnings about untitled buffers
autocmd FocusLost * silent! wa
autocmd BufNewFile,BufRead *.json set filetype=javascript
autocmd BufNewFile,BufRead *.ejs set filetype=html
autocmd BufNewFile,BufRead *.ino set filetype=c
" make quickfix windows take all the lower section of the screen when there
" are multiple windows open
autocmd FileType qf wincmd J
endif
" code folding settings
@@ -142,6 +145,7 @@ set linebreak " set soft wrapping
set showbreak=… " show ellipsis at breaking
set autoindent " automatically set indent of new line
set smartindent
try
lang en_US