diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2017-01-22 11:27:44 -0700 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2017-01-22 11:27:44 -0700 |
commit | e8ed3462bb066dbbf4860c378ee2d657896a2857 (patch) | |
tree | 7e279749419e47e25ecc2ccc751267da291a80f6 | |
parent | 20bde51a46c737632e7fc464b531a1752caca9fb (diff) | |
download | vim-e8ed3462bb066dbbf4860c378ee2d657896a2857.tar.gz vim-e8ed3462bb066dbbf4860c378ee2d657896a2857.tar.bz2 vim-e8ed3462bb066dbbf4860c378ee2d657896a2857.zip |
Bundle update Sun Jan 22 11:27:44 MST 2017
-rwxr-xr-x | bundle-update.sh | 13 | ||||
m--------- | bundle/airline | 0 | ||||
m--------- | bundle/grammarous | 0 | ||||
m--------- | bundle/neocomplete | 0 | ||||
m--------- | bundle/unite | 0 | ||||
-rw-r--r-- | config/grammarous.vim | 3 | ||||
-rw-r--r-- | vimrc | 1 |
7 files changed, 17 insertions, 0 deletions
diff --git a/bundle-update.sh b/bundle-update.sh new file mode 100755 index 0000000..5f50a0a --- /dev/null +++ b/bundle-update.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +wd=$(dirname $0) + +for i in $(ls $wd/bundle); do + pushd $wd/bundle/$i + git pull origin master + popd > /dev/null +done + +cd $wd +git add . +git commit -m "Bundle update `date`" diff --git a/bundle/airline b/bundle/airline -Subproject 258430db82329c1298750af91391c1b21a5a5b5 +Subproject b56a064377fcd4340e60ffd9a7fcf157f8a2693 diff --git a/bundle/grammarous b/bundle/grammarous -Subproject 81ff81d1ac5e2ea059600588165ba9b2ecb854e +Subproject 46048e9ba954296bda789d8fdb794d4ae7a9d49 diff --git a/bundle/neocomplete b/bundle/neocomplete -Subproject fdf3883b209349513c7b2c2b9a19360544a2577 +Subproject 9617d825c0d4acdb18aec903e9c1c0443058d18 diff --git a/bundle/unite b/bundle/unite -Subproject 3afccb35526e8645f1dd77f4b137e49153f9892 +Subproject be09b0e5784c4c4c13aefae4f16313696c6f51d diff --git a/config/grammarous.vim b/config/grammarous.vim index 89399f6..4f2ae44 100644 --- a/config/grammarous.vim +++ b/config/grammarous.vim @@ -1,3 +1,6 @@ +" use global languagetool +let g:grammarous#languagetool_cmd = 'languagetool' + " Search only in comment section for certain filestypes let g:grammarous#default_comments_only_filetypes = { \ '*' : 1, 'help' : 0, 'markdown' : 0, 'tex' : 0 @@ -35,6 +35,7 @@ set comments=sl:/*,mb:\ *,elx:\ */ " Enhanced keyboard mappings " +set pastetoggle=<C-p> " in normal mode F2 will save the file nmap <F2> :w<CR> " in insert mode F2 will exit insert, save, enters insert again |