aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorThorsten Töpper <atsutane@freethoughts.de>2014-06-19 12:13:40 +0200
committerThorsten Töpper <atsutane@freethoughts.de>2014-06-19 12:13:40 +0200
commit5e7f909bb4f66bba60d3c4ff31df012d21d18699 (patch)
tree517f04b7eefa6ac93884e607bbb41e5355ab2902 /vimrc
parent875c561f9a2b264f7f48896396eeb644611df62f (diff)
downloaddotfiles-5e7f909bb4f66bba60d3c4ff31df012d21d18699.tar.gz
dotfiles-5e7f909bb4f66bba60d3c4ff31df012d21d18699.tar.bz2
Some files from the laptop.
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc34
1 files changed, 34 insertions, 0 deletions
diff --git a/vimrc b/vimrc
new file mode 100644
index 0000000..9b8ad0c
--- /dev/null
+++ b/vimrc
@@ -0,0 +1,34 @@
+" Don't ensure compatibility with vi at all cost
+set nocompatible
+" More flexible backspace
+set backspace=indent,eol,start
+" Dark background
+set bg=dark
+set hlsearch
+" Set the terminals title
+set title
+" Always show a status line
+set laststatus=2
+" Automatically indent, and do it smart
+set autoindent smartindent
+" Enhanced mode for command-line completion
+set wildmenu
+" Don't jump to the matching bracket automatically
+set noshowmatch
+" Enable ruler
+set ruler
+" Use UTF-8
+set fileencoding=utf-8 encoding=utf-8
+" Disable folding completely
+set nofen
+" Enable line numbers
+" set nu
+" Set the tabwidth
+set ts=4
+" Enable syntax highlighting
+syntax on
+" swap file directory
+set directory=/tmp
+
+" don't store .viminfo in $HOME
+set viminfo+=n/tmp/.viminfo_atsu