From 5d4df578ca9829b07a1f686dfb7c71eca1f0d668 Mon Sep 17 00:00:00 2001 From: Olliver Schinagl Date: Tue, 23 Feb 2016 09:40:40 +0100 Subject: vim: Add most of .[g]vimrc files --- .gvimrc | 18 +++++++++++++++++ .vimrc | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) diff --git a/.gvimrc b/.gvimrc index e69de29..63c348b 100644 --- a/.gvimrc +++ b/.gvimrc @@ -0,0 +1,18 @@ +" Make external commands work through a pipe instead of a pseudo-tty +"set noguipty + +" set the X11 font to use +" set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1 + +" Make command line two lines high +set ch=1 + +" Hide the mouse when typing text +set mousehide + +" Make shift-insert work like in Xterm +map +map! + +" Highlighting strings inside C comments +let c_comment_strings=1 diff --git a/.vimrc b/.vimrc index e69de29..11fde93 100644 --- a/.vimrc +++ b/.vimrc @@ -0,0 +1,68 @@ +" When started as "evim", evim.vim will already have done these settings. +if v:progname =~? "evim" + finish +endif + +" Use Vim settings, rather than Vi settings (much better!). +" This must be first, because it changes other options as a side effect. +set nocompatible + +" allow backspacing over everything in insert mode +set backspace=indent,eol,start + +set backup " keep a backup file (restore to previous version) +set undofile " keep an undo file (undo changes after closing) +set history=50 " keep 50 lines of command line history +set ruler " show the cursor position all the time +set showcmd " display incomplete commands +set incsearch " do incremental searching + +" CTRL-U in insert mode deletes a lot. Use CTRL-G u to first break undo, +" so that you can undo CTRL-U after inserting a line break. +inoremap u + +" In many terminal emulators the mouse works just fine, thus enable it. +if has('mouse') + set mouse=a +endif + +" Switch syntax highlighting on, when the terminal has colors +" Also switch on highlighting the last used search pattern. +if &t_Co > 2 || has("gui_running") + syntax on + set hlsearch +endif + +" Only do this part when compiled with support for autocommands. +if has("autocmd") + " Enable file type detection. + " Use the default filetype settings, so that mail gets 'tw' set to 72, + " 'cindent' is on in C files, etc. + " Also load indent files, to automatically do language-dependent indenting. + filetype plugin indent on + + " Put these in an autocmd group, so that we can delete them easily. + augroup vimrcEx + au! + + " For all text files set 'textwidth' to 78 characters. + autocmd FileType text setlocal textwidth=78 + + " When editing a file, always jump to the last known cursor position. + " Don't do it when the position is invalid or when inside an event handler + " (happens when dropping a file on gvim). + autocmd BufReadPost * + \ if line("'\"") >= 1 && line("'\"") <= line("$") | + \ exe "normal! g`\"" | + \ endif + augroup END +else + set autoindent " always set autoindenting on +endif " has("autocmd") + +if has('langmap') && exists('+langnoremap') + " Prevent that the langmap option applies to characters that result from a + " mapping. If unset (default), this may break plugins (but it's backward + " compatible). + set langnoremap +endif -- cgit v0.12