summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlliver Schinagl <oliver@schinagl.nl>2016-02-23 08:40:40 (GMT)
committerOlliver Schinagl <oliver@schinagl.nl>2017-04-18 08:05:25 (GMT)
commit5d4df578ca9829b07a1f686dfb7c71eca1f0d668 (patch)
tree9ea0ae844fa071ca967d892aff6e6cf7ed615f62
parent3a0979bd956155f8a052b126c2ac273480889245 (diff)
downloaddotfiles-5d4df578ca9829b07a1f686dfb7c71eca1f0d668.zip
dotfiles-5d4df578ca9829b07a1f686dfb7c71eca1f0d668.tar.gz
dotfiles-5d4df578ca9829b07a1f686dfb7c71eca1f0d668.tar.bz2
vim: Add most of .[g]vimrc files
-rw-r--r--.gvimrc18
-rw-r--r--.vimrc68
2 files changed, 86 insertions, 0 deletions
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 <S-Insert> <MiddleMouse>
+map! <S-Insert> <MiddleMouse>
+
+" 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 <C-U> <C-G>u<C-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