aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2016-05-04 03:12:35 +0200
committerMax Christian Pohle2016-05-04 03:12:35 +0200
commit9c10834b213664d122dc08a7a4ed12325c5bad34 (patch)
tree9c81e7182724529aca56e2a7b287d15818baf5a9
parent86aec2e9fd5d8e54afa38a562b2deb051b0da339 (diff)
downloadvim-karlmarks-9c10834b213664d122dc08a7a4ed12325c5bad34.tar.bz2
vim-karlmarks-9c10834b213664d122dc08a7a4ed12325c5bad34.zip
some fixes and new plugins
fixed y's behaviour so that copy does not delete any more. included plugin for better code formatting and a loremipsum generator.
-rw-r--r--.vim/doc/shortcuts.txt1
-rw-r--r--.vim/vimrc3
2 files changed, 4 insertions, 0 deletions
diff --git a/.vim/doc/shortcuts.txt b/.vim/doc/shortcuts.txt
index 2597ed6..9c168f9 100644
--- a/.vim/doc/shortcuts.txt
+++ b/.vim/doc/shortcuts.txt
@@ -4,6 +4,7 @@ f{char} - move cursor to the character {char}
4 4
5[visual mode] - with selected lines 5[visual mode] - with selected lines
6gq - formats text so that it fits in whatever :set textwidth was set 6gq - formats text so that it fits in whatever :set textwidth was set
7iB - select block between curly braces (:help object-select)
7 8
8 9
9[commands] 10[commands]
diff --git a/.vim/vimrc b/.vim/vimrc
index 4c18b8c..e03c5e1 100644
--- a/.vim/vimrc
+++ b/.vim/vimrc
@@ -15,6 +15,9 @@ Plugin 'jeaye/color_coded' | " semantic highlighting
15Plugin 'terryma/vim-multiple-cursors' | " displays visual block mode as cursors 15Plugin 'terryma/vim-multiple-cursors' | " displays visual block mode as cursors
16 16
17Plugin 'taglist-plus' | " quick code navigator 17Plugin 'taglist-plus' | " quick code navigator
18Plugin 'jdonaldson/vaxe' | " code completion for haxe
19Plugin 'sheerun/vim-polyglot' | " better syntax highlighting/indentation for multiple languages
20Plugin 'loremipsum' | " Sample text generator
18let Tlist_Compact_Format = 1 | " 21let Tlist_Compact_Format = 1 | "
19let Tlist_GainFocus_On_ToggleOpen = 1 | " 22let Tlist_GainFocus_On_ToggleOpen = 1 | "
20let Tlist_Close_On_Select = 1 | " 23let Tlist_Close_On_Select = 1 | "
..