summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbundle-update.sh13
m---------bundle/airline0
m---------bundle/grammarous0
m---------bundle/neocomplete0
m---------bundle/unite0
-rw-r--r--config/grammarous.vim3
-rw-r--r--vimrc1
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
diff --git a/vimrc b/vimrc
index c038eb8..2a4d4d4 100644
--- a/vimrc
+++ b/vimrc
@@ -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