From c2a13ef3f498d90fb9f46b830e14c31156635676 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 9 May 2016 17:00:35 +0200 Subject: moved repository up again this repo shell be used for vim exclusively --- .vim/doc/INSTALL | 42 ------------------------------------ .vim/doc/coderonline-vim.png | Bin 195172 -> 0 bytes .vim/doc/readme.md | 8 ------- .vim/doc/shortcuts.txt | 50 ------------------------------------------- 4 files changed, 100 deletions(-) delete mode 100644 .vim/doc/INSTALL delete mode 100644 .vim/doc/coderonline-vim.png delete mode 100644 .vim/doc/readme.md delete mode 100644 .vim/doc/shortcuts.txt (limited to '.vim/doc') diff --git a/.vim/doc/INSTALL b/.vim/doc/INSTALL deleted file mode 100644 index 50a2f08..0000000 --- a/.vim/doc/INSTALL +++ /dev/null @@ -1,42 +0,0 @@ -# INSTALL -# this should briefly show you how to install this bundle -# -# step 1) -# download the current version using git -git clone http://git.entwicklerseite.de/vim .vim/ - -# step 2) -# create a symbolic link to the downloaded vim.rc in you $HOME-directory -ln -s .vim/vimrc .vimrc - -# step 3) -# get vim submodules, namely this is just vundle as this will download the rest by itsown -git submodule update --init --recursive - -# step 4) -# fix errors caused by the different vim version you might be using and define the spell checkers language. Starting Vim will show you which lines are not supported on your vim installation so that you can fix them: -vim vimrc - -# step 5) -# download plugins and spell file for your language -vim -c ":VundleUpdate" -vim -c ":set spell" -# vim +set\ spell # < maybe that works as well - -# step 6) -# build YouCompleteMe (if you plan to use it) -cd plugins/YouCompleteMe -python2 ./install.py --clang-completer - - -# step 7) -# create an entry in file managers right click menu 'open with' allowing you to open the file in a vim tab -mkdir -p .local/share/Thunar/sendto/ -cp ~/.vim/gvim-tab.desktop ~/.local/share/Thunar/sendto/ - -# step 8) -# add gvim functionality to thunar, so that sendto can be used to open a file in an existing vim instance (as a tab in this case) -cp ~/.vim/gvim-tab.desktop ~/.local/share/applications/ -update-desktop-database ~/.local/share/applications/ - - diff --git a/.vim/doc/coderonline-vim.png b/.vim/doc/coderonline-vim.png deleted file mode 100644 index ac76bff..0000000 Binary files a/.vim/doc/coderonline-vim.png and /dev/null differ diff --git a/.vim/doc/readme.md b/.vim/doc/readme.md deleted file mode 100644 index 800c1a2..0000000 --- a/.vim/doc/readme.md +++ /dev/null @@ -1,8 +0,0 @@ -

vim configuration

-This is the configuration I am using. - - -

coderonline.vim - colorscheme

- - screenshot of vim - diff --git a/.vim/doc/shortcuts.txt b/.vim/doc/shortcuts.txt deleted file mode 100644 index 9c168f9..0000000 --- a/.vim/doc/shortcuts.txt +++ /dev/null @@ -1,50 +0,0 @@ -[normal mode] -f{char} - move cursor to the character {char} - - -[visual mode] - with selected lines -gq - formats text so that it fits in whatever :set textwidth was set -iB - select block between curly braces (:help object-select) - - -[commands] -:spell [word] - adds a word to the current dictionary (no mistake any more) -:set list - display non printable characters -:retab - replaces tabs with spaces -:set expandtab - in insert mode: replace tab with spaces - - -[navigation] - - look up the tag under the cursor (help links as well) - - return back from tag under the cursor - - -[macros] - record and play back a series of vim commands -qa - start (q) macro recording in register a (can be anything) -q - stop macro recording -@a - replay macro a -:'<,'>normal @a - apply a to every line in the current selection - - -[marker] -ma - set marker a-z (a in this case) -'a - go to marker a - - -[hotkeys] -, - increment, decrement number under the cursor - - -[windows] -v - splits buffer vertically (screen uses |) -s - splits buffer horizontally (same as screen) -w - moves the cursor to the next window and back -[dir] - moves the cursor in that direction (use hjkl or arrow keys) - - -[vimdiff] -do - get changes from other window into the current -dp - put changes from current window into the other -]c - jump to the next change -[c - jump to the prevous change -zR - opens all folds (unfold all) -- cgit v1.2.3