1
0
Fork 0

Update plugins and config

This commit is contained in:
Basti 2018-04-17 10:39:51 +02:00
parent 1b6471fb83
commit e1a9ea6458
9 changed files with 24 additions and 2 deletions

12
.gitmodules vendored
View File

@ -64,3 +64,15 @@
[submodule "bundle/vim-ember-cli-test-runner"]
path = bundle/vim-ember-cli-test-runner
url = git@github.com:JarrodCTaylor/vim-ember-cli-test-runner.git
[submodule "bundle/vim-rfactory"]
path = bundle/vim-rfactory
url = https://github.com/christoomey/vim-rfactory
[submodule "bundle/editorconfig-vim"]
path = bundle/editorconfig-vim
url = https://github.com/editorconfig/editorconfig-vim.git
[submodule "bundle/vim-jsdoc"]
path = bundle/vim-jsdoc
url = git@github.com:heavenshell/vim-jsdoc.git
[submodule "bundle/vim-ember-imports"]
path = bundle/vim-ember-imports
url = https://github.com/sukima/vim-ember-imports.git

1
bundle/delimitMate Submodule

@ -0,0 +1 @@
Subproject commit b5719054beebe0135c94f4711a06dc7588041f09

@ -0,0 +1 @@
Subproject commit a069da8426ec5b9fc4d9f83c783c999e9d20f7d0

@ -1 +1 @@
Subproject commit 3eb51f1e26bbc7e1682a68516ebc8acb74011717
Subproject commit e84f80a68ae7a5b03995ad712f8fbdc8483f0fd8

@ -0,0 +1 @@
Subproject commit e290c05c1095ec3fa69729ab83a8b388e4692fdb

1
bundle/vim-jsdoc Submodule

@ -0,0 +1 @@
Subproject commit cd8f084c3b4bd198620d45a007cee6b009b57b35

1
bundle/vim-rfactory Submodule

@ -0,0 +1 @@
Subproject commit 8a76aa2c566f3275e31c74c5e22666dcc4ba11c5

1
bundle/vim-solidity Submodule

@ -0,0 +1 @@
Subproject commit 4a81c61309c3a5bdf5621a3f78622d2b6d85f6fd

6
vimrc
View File

@ -53,7 +53,7 @@ set statusline=[%n]\ %<%.99f\ %h%w%m%r%y\ %{exists('*CapsLockStatusline')?CapsLo
set makeprg=ruby\ %
" Use system clipboard
set clipboard=unnamedplus
" set clipboard=unnamedplus
" Tab mappings.
" map <leader>tt :tabnew<cr>
@ -65,6 +65,7 @@ map <leader>tp :tabprevious<cr>
map <leader>tf :tabfirst<cr>
map <leader>tl :tablast<cr>
map <leader>tm :tabmove
map <leader>md :!pandoc -f markdown -t html -o /tmp/readme-%.html % && firefox /tmp/readme-%.html<cr>
" Record macros with qq and play them with space
:nnoremap <Space> @q
@ -122,6 +123,7 @@ set tags+=gems.tags
colorscheme smyck
let g:syntastic_mode_map = { 'mode': 'active', 'active_filetypes': ['ruby', 'js', 'javascript'], 'passive_filetypes': ['puppet'] }
let g:syntastic_javascript_checkers = ['eslint']
" Highlight the current line when in insert mode
:autocmd InsertEnter,InsertLeave * set cul!
@ -144,3 +146,5 @@ map <F5> <Plug>(xmpfilter-run)
" Use normal tabs, not spaces, in Makefiles
autocmd filetype make setlocal noexpandtab
let g:ycm_server_python_interpreter = '/usr/bin/python2'