-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
62 changed files
with
414 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules/ | ||
_vim/bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# Matt Smith's Dotfiles | ||
|
||
My original dotfiles came from a fork of a colleague of mine. I've learned a lot | ||
since that time, and now it's time to start again from scratch with my own | ||
My original dotfiles came from a fork of a colleague of mine. I've learned a | ||
lot since that time, and now it's time to start again from scratch with my own | ||
personal quirks completely throughout the repo. Here's to another fun ride! | ||
|
||
## TODO | ||
|
||
- Look into: http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-stored-in | ||
For node_modules path addition |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
NeoBundle 'mileszs/ack.vim' | ||
|
||
let g:ackprg = 'ag --nogroup --nocolor --column' | ||
|
||
noremap <leader>s :Ack | ||
map <F3> :execute "Ack -w " . expand("<cword>")<Bar> cw<CR> | ||
map <F4> :execute "Ack -w --type=" . &filetype . " " . expand("<cword>")<Bar> cw<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
let g:airline_powerline_fonts = 1 | ||
let g:airline#extensions#tabline#enabled = 1 | ||
" Default | ||
let g:airline#extensions#tmuxline#enabled = 0 | ||
" Presentation | ||
"let g:airline#extensions#tmuxline#enabled = 1 | ||
|
||
NeoBundle 'bling/vim-airline' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
NeoBundle 'duff/vim-bufonly' | ||
|
||
map <leader>b :BufOnly<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
NeoBundleLazy 'mtscout6/vim-cjsx', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'coffee', | ||
\ 'coffeescript' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
NeoBundleLazy 'docunext/closetag.vim', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'html', | ||
\ 'xml', | ||
\ 'javascript' | ||
\ ] | ||
\ } | ||
\ } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
NeoBundleLazy 'kchmck/vim-coffee-script', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'coffee' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
NeoBundleLazy 'JulesWang/css.vim', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'css', | ||
\ 'less', | ||
\ 'scss', | ||
\ 'sass' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
NeoBundleLazy 'hail2u/vim-css3-syntax', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'css', | ||
\ 'less', | ||
\ 'scss', | ||
\ 'sass' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
NeoBundleLazy 'kaneshin/ctrlp-git-log', { | ||
\ 'depends':[ | ||
\ 'kien/ctrlp.vim' | ||
\ ], | ||
\ 'autoload': { | ||
\ 'commands': [ | ||
\ 'CtrlPGitLog' | ||
\ ] | ||
\ } | ||
\ } | ||
|
||
map <leader>gl :CtrlPGitLog<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
NeoBundleLazy 'mattn/ctrlp-git', { | ||
\ 'depends':[ | ||
\ 'kien/ctrlp.vim' | ||
\ ], | ||
\ 'autoload': { | ||
\ 'commands': [ | ||
\ 'CtrlPGitFiles', | ||
\ 'CtrlPGitBranch' | ||
\ ] | ||
\ } | ||
\ } | ||
|
||
map <leader>gs :CtrlPGitFiles<CR> | ||
map <leader>gb :CtrlPGitBranch<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
NeoBundleLazy 'jasoncodes/ctrlp-modified.vim', { | ||
\ 'depends':[ | ||
\ 'kien/ctrlp.vim' | ||
\ ], | ||
\ 'autoload': { | ||
\ 'commands': [ | ||
\ 'CtrlPModified' | ||
\ ] | ||
\ } | ||
\ } | ||
|
||
map <leader>gm :CtrlPModified<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
let g:ctrlp_working_path_mode = 'r' | ||
let g:ctrlp_extensions = ['tag', 'buffertag', 'line', 'funky'] | ||
", 'git-log', 'git_branch', 'git_files', 'modified'] | ||
let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|git' | ||
|
||
NeoBundleLazy 'kien/ctrlp.vim', { | ||
\ 'autoload': { | ||
\ 'commands':[ | ||
\ 'CtrlP', | ||
\ 'CtrlPGitFiles', | ||
\ 'CtrlPGitBranch', | ||
\ 'CtrlPGitLog', | ||
\ ] | ||
\ } | ||
\ } | ||
|
||
map <leader>t :CtrlP getcwd()<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'raimondi/delimitmate' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'tpope/vim-dispatch' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
NeoBundleLazy 'ekalinin/Dockerfile.vim', { | ||
\ 'autoload':{ | ||
\ 'filetypes':[ | ||
\ 'Dockerfile' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
NeoBundleLazy 'mattn/emmet-vim', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'cjsx', | ||
\ 'coffeescript', | ||
\ 'html', | ||
\ 'javascript', | ||
\ 'markdown', | ||
\ 'md', | ||
\ 'xml' | ||
\ ] | ||
\ } | ||
\ } | ||
|
||
imap <C-e> <C-y>, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
NeoBundleLazy 'tpope/vim-endwise', { | ||
\ 'autoload':{ | ||
\ 'filetypes':[ | ||
\ 'ruby', | ||
\ 'vim' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'tommcdo/vim-exchange' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
NeoBundle 'tpope/vim-fugitive' | ||
|
||
nnoremap <silent> <leader>gs :Gstatus<CR> | ||
nnoremap <silent> <leader>gd :Gdiff<CR> | ||
nnoremap <silent> <leader>gc :Gcommit<CR> | ||
nnoremap <silent> <leader>gb :Gblame<CR> | ||
nnoremap <silent> <leader>gl :Glog<CR> | ||
nnoremap <silent> <leader>gp :Git push<CR> | ||
nnoremap <silent> <leader>gw :Gwrite<CR> | ||
nnoremap <silent> <leader>gr :Gremove<CR> | ||
autocmd FileType gitcommit nmap <buffer> U :Git checkout -- <C-r><C-g><CR> | ||
autocmd BufReadPost fugitive://* set bufhidden=delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
NeoBundle 'airblade/vim-gitgutter' | ||
|
||
highlight clear SignColumn | ||
map ]h <Plug>GitGutterNextHunk | ||
map [h <Plug>GitGutterPrevHunk | ||
map <leader>hv <Plug>GitGutterPreviewHunk | ||
map <Leader>hs <Plug>GitGutterStageHunk | ||
map <Leader>hr <Plug>GitGutterRevertHunk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'tpope/vim-git' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
NeoBundleLazy 'gregsexton/gitv', { | ||
\ 'depends':[ | ||
\ 'tpope/vim-fugitive' | ||
\ ], | ||
\ 'autoload':{ | ||
\ 'commands':'Gitv' | ||
\ } | ||
\ } | ||
|
||
nnoremap <silent> <leader>gv :Gitv<CR> | ||
nnoremap <silent> <leader>gV :Gitv!<CR> | ||
highlight diffAdded guifg=#00bf00 | ||
highlight diffRemoved guifg=#bf0000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'zhaocai/GoldenView.Vim' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
NeoBundleLazy 'suan/vim-instant-markdown', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'markdown', | ||
\ 'md', | ||
\ 'mkd.markdown' | ||
\ ] | ||
\ } | ||
\ } | ||
|
||
let g:instant_markdown_autostart = 0 | ||
|
||
map <leader>fp :InstantMarkdownPreview<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
NeoBundle 'pangloss/vim-javascript', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'javascript' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
NeoBundleLazy 'heavenshell/vim-jsdoc', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'javascript' | ||
\ ] | ||
\ } | ||
\ } | ||
|
||
nmap <silent> <leader>jd <Plug>(jsdoc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
let g:vim_json_syntax_conceal = 0 | ||
|
||
NeoBundleLazy 'elzr/vim-json', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'json' | ||
\ ] | ||
\ } | ||
\ } | ||
|
||
" Pretty Print Json | ||
nmap <leader>jf :%!python -m json.tool<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
NeoBundleLazy 'mxw/vim-jsx', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'javascript' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
NeoBundleLazy 'groenewege/vim-less', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'less' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'robbles/logstash.vim' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
let g:vim_markdown_frontmatter=1 | ||
|
||
NeoBundleLazy 'plasticboy/vim-markdown', { | ||
\ 'depends':[ | ||
\ 'godlygeek/tabular' | ||
\ ], | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'markdown', | ||
\ 'md', | ||
\ 'mkd.markdown' | ||
\ ] | ||
\ } | ||
\ } | ||
|
||
autocmd Filetype mkd.markdown setlocal wrap | ||
autocmd Filetype mkd.markdown setlocal linebreak | ||
autocmd Filetype mkd.markdown setlocal nolist | ||
autocmd Filetype mkd.markdown setlocal columns=100 | ||
autocmd Filetype mkd.markdown setlocal tw=100 | ||
autocmd Filetype mkd.markdown setlocal wm=4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'edsono/vim-matchit' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
NeoBundleLazy 'gregsexton/MatchTag', { | ||
\ 'autoload':{ | ||
\ 'filetypes':[ | ||
\ 'html', | ||
\ 'xml', | ||
\ 'javascript' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
let g:multi_cursor_use_default_mapping=0 | ||
let g:multi_cursor_start_key='<leader>m' | ||
let g:multi_cursor_next_key='<C-n>' | ||
let g:multi_cursor_prev_key='<C-p>' | ||
let g:multi_cursor_skip_key='<C-x>' | ||
let g:multi_cursor_quit_key='<Esc>' | ||
|
||
NeoBundle 'terryma/vim-multiple-cursors' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'scrooloose/nerdcommenter' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
NeoBundleLazy 'moll/vim-node', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'coffee', | ||
\ 'coffeescript', | ||
\ 'javascript', | ||
\ 'less' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
NeoBundle 'mtscout6/vim-projectionist' | ||
|
||
map <leader>ft :A<CR> | ||
map <leader>fv :AV<CR> | ||
map <leader>fs :AS<CR> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'sk1418/QFGrep' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'stefandtw/quickfix-reflector.vim' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'tpope/vim-repeat' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
NeoBundleLazy 'vim-ruby/vim-ruby', { | ||
\ 'autoload':{ | ||
\ 'filetypes':[ | ||
\ 'ruby', | ||
\ 'vim' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
NeoBundleLazy 'cakebaker/scss-syntax.vim', { | ||
\ 'autoload': { | ||
\ 'filetypes': [ | ||
\ 'scss', | ||
\ 'sass' | ||
\ ] | ||
\ } | ||
\ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NeoBundle 'kshenoy/vim-signature' |
Oops, something went wrong.