aboutsummaryrefslogtreecommitdiff
path: root/.vim/c-support/rc
diff options
context:
space:
mode:
Diffstat (limited to '.vim/c-support/rc')
-rw-r--r--.vim/c-support/rc/customization.ctags7
-rw-r--r--.vim/c-support/rc/customization.gvimrc44
-rw-r--r--.vim/c-support/rc/customization.indent.pro8
-rw-r--r--.vim/c-support/rc/customization.vimrc149
4 files changed, 0 insertions, 208 deletions
diff --git a/.vim/c-support/rc/customization.ctags b/.vim/c-support/rc/customization.ctags
deleted file mode 100644
index 75ccd5a..0000000
--- a/.vim/c-support/rc/customization.ctags
+++ /dev/null
@@ -1,7 +0,0 @@
-
---regex-make=/^([^:# \t]+)[ \t]*[:]{1,2}/\1/t,targets/
-
---langdef=qmake
---langmap=qmake:+.pro
---regex-qmake=/^([[:upper:]_]+)/\1/t,SystemVariables/
-
diff --git a/.vim/c-support/rc/customization.gvimrc b/.vim/c-support/rc/customization.gvimrc
deleted file mode 100644
index ff3d690..0000000
--- a/.vim/c-support/rc/customization.gvimrc
+++ /dev/null
@@ -1,44 +0,0 @@
-"
-"===============================================================================
-"========== example gvimrc from the distribution ==============================
-"===============================================================================
-"
-runtime gvimrc_example.vim
-"
-"
-"===============================================================================
-"========== CUSTOMIZATION (gvimrc) ===========================================
-"===============================================================================
-"
-"-------------------------------------------------------------------------------
-" Moving cursor to other windows
-"
-" shift down : change window focus to lower one (cyclic)
-" shift up : change window focus to upper one (cyclic)
-" shift left : change window focus to one on left
-" shift right : change window focus to one on right
-"-------------------------------------------------------------------------------
-"
-nmap <s-down> <c-w>w
-nmap <s-up> <c-w>W
-nmap <s-left> <c-w>h
-nmap <s-right> <c-w>l
-"
-"
-"-------------------------------------------------------------------------------
-" some additional hot keys
-"-------------------------------------------------------------------------------
-" S-F3 - call gvim file browser
-"-------------------------------------------------------------------------------
-"
- map <silent> <s-F3> :silent browse confirm e<CR>
-imap <silent> <s-F3> <Esc>:silent browse confirm e<CR>
-"
-"
-"-------------------------------------------------------------------------------
-" toggle insert mode <--> 'normal mode with the <RightMouse>-key
-"-------------------------------------------------------------------------------
-"
-nmap <RightMouse> <Insert>
-imap <RightMouse> <ESC>
-"
diff --git a/.vim/c-support/rc/customization.indent.pro b/.vim/c-support/rc/customization.indent.pro
deleted file mode 100644
index 95f6081..0000000
--- a/.vim/c-support/rc/customization.indent.pro
+++ /dev/null
@@ -1,8 +0,0 @@
---blank-lines-after-procedures
---brace-indent0
---comment-indentation49
---declaration-comment-column49
---declaration-indentation10
---space-after-parentheses
---swallow-optional-blank-lines
---tab-size2
diff --git a/.vim/c-support/rc/customization.vimrc b/.vim/c-support/rc/customization.vimrc
deleted file mode 100644
index f9ab5a7..0000000
--- a/.vim/c-support/rc/customization.vimrc
+++ /dev/null
@@ -1,149 +0,0 @@
-"
-"===============================================================================
-"========== load example vimrc from the distribution =========================
-"===============================================================================
-"
-runtime vimrc_example.vim
-"
-filetype plugin on
-"
-"===============================================================================
-"========== CUSTOMIZATION (vimrc) ============================================
-"===============================================================================
-"
-" Platform specific items:
-" - central backup directory (has to be created)
-" - default dictionary
-" Uncomment your choice.
-if has("win16") || has("win32") || has("win64") ||
- \ has("win95") || has("win32unix")
- "
-" runtime mswin.vim
-" set backupdir =$VIM\vimfiles\backupdir
-" set dictionary=$VIM\vimfiles\wordlists/german.list
-else
-" set backupdir =$HOME/.vim.backupdir
-" set dictionary=$HOME/.vim/wordlists/german.list
-endif
-"
-" Using a backupdir under UNIX/Linux: you may want to include a line similar to
-" find $HOME/.vim.backupdir -name "*" -type f -mtime +60 -exec rm -f {} \;
-" in one of your shell startup files (e.g. $HOME/.profile)
-"
-"-------------------------------------------------------------------------------
-" Use of dictionaries
-"-------------------------------------------------------------------------------
-"
-set complete+=k " scan the files given with the 'dictionary' option
-"
-"-------------------------------------------------------------------------------
-" Various settings
-"-------------------------------------------------------------------------------
-"
-set autoread " read open files again when changed outside Vim
-set autowrite " write a modified buffer on each :next , ...
-set browsedir =current " which directory to use for the file browser
-set incsearch " use incremental search
-set nowrap " do not wrap lines
-set shiftwidth =2 " number of spaces to use for each step of indent
-set tabstop =2 " number of spaces that a <Tab> in the file counts for
-set visualbell " visual bell instead of beeping
-"
-"
-"-------------------------------------------------------------------------------
-" some additional hot keys
-"-------------------------------------------------------------------------------
-" F2 - write file without confirmation
-" F3 - call file explorer Ex
-" F4 - show tag under curser in the preview window (tagfile must exist!)
-" F5 - open quickfix error window
-" F6 - close quickfix error window
-" F7 - display previous error
-" F8 - display next error
-" S-Tab - Fast switching between buffers (see below)
-" C-q - Leave the editor with Ctrl-q (see below)
-"-------------------------------------------------------------------------------
-"
-map <silent> <F2> :write<CR>
-map <silent> <F3> :Explore<CR>
-nmap <silent> <F4> :exe ":ptag ".expand("<cword>")<CR>
-map <silent> <F5> :copen<CR>
-map <silent> <F6> :cclose<CR>
-map <silent> <F7> :cp<CR>
-map <silent> <F8> :cn<CR>
-"
-imap <silent> <F2> <Esc>:write<CR>
-imap <silent> <F3> <Esc>:Explore<CR>
-imap <silent> <F4> <Esc>:exe ":ptag ".expand("<cword>")<CR>
-imap <silent> <F5> <Esc>:copen<CR>
-imap <silent> <F6> <Esc>:cclose<CR>
-imap <silent> <F7> <Esc>:cp<CR>
-imap <silent> <F8> <Esc>:cn<CR>
-"
-"-------------------------------------------------------------------------------
-" Fast switching between buffers
-" The current buffer will be saved before switching to the next one.
-" Choose :bprevious or :bnext
-"-------------------------------------------------------------------------------
-"
- map <silent> <s-tab> <Esc>:if &modifiable && !&readonly &&
- \ &modified <CR> :write<CR> :endif<CR>:bprevious<CR>
-imap <silent> <s-tab> <Esc>:if &modifiable && !&readonly &&
- \ &modified <CR> :write<CR> :endif<CR>:bprevious<CR>
-"
-"-------------------------------------------------------------------------------
-" Leave the editor with Ctrl-q : Write all changed buffers and exit Vim
-"-------------------------------------------------------------------------------
-nmap <C-q> :wqa<CR>
-"
-"-------------------------------------------------------------------------------
-" autocomplete parenthesis, brackets and braces
-"-------------------------------------------------------------------------------
-inoremap ( ()<Left>
-inoremap [ []<Left>
-inoremap { {}<Left>
-"
-vnoremap ( s()<Esc>P<Right>%
-vnoremap [ s[]<Esc>P<Right>%
-vnoremap { s{}<Esc>P<Right>%
-"
-"-------------------------------------------------------------------------------
-" Change the working directory to the directory containing the current file
-"-------------------------------------------------------------------------------
-if has("autocmd")
- autocmd BufEnter * :lchdir %:p:h
-endif " has("autocmd")
-"
-"-------------------------------------------------------------------------------
-" Filename completion
-"
-" wildmenu : command-line completion operates in an enhanced mode
-" wildignore : A file that matches with one of these
-" patterns is ignored when completing file or directory names.
-"-------------------------------------------------------------------------------
-"
-set wildmenu
-set wildignore=*.bak,*.o,*.e,*~
-"
-"-------------------------------------------------------------------------------
-" print options (pc = percentage of the media size)
-"-------------------------------------------------------------------------------
-set printoptions=left:8pc,right:3pc
-"
-"-------------------------------------------------------------------------------
-" taglist.vim : toggle the taglist window
-" taglist.vim : define the title texts for make
-" taglist.vim : define the title texts for qmake
-"-------------------------------------------------------------------------------
- noremap <silent> <F11> <Esc><Esc>:Tlist<CR>
-inoremap <silent> <F11> <Esc><Esc>:Tlist<CR>
-
-let tlist_make_settings = 'make;m:makros;t:targets'
-
-let tlist_qmake_settings = 'qmake;t:SystemVariables'
-
-if has("autocmd")
- " ---------- qmake : set filetype for *.pro ----------
- autocmd BufNewFile,BufRead *.pro set filetype=qmake
-endif " has("autocmd")
-