summaryrefslogtreecommitdiff
path: root/vim/.vimrc
diff options
context:
space:
mode:
authorRobin Krahl <me@robin-krahl.de>2018-02-27 22:55:46 +0100
committerRobin Krahl <me@robin-krahl.de>2018-02-27 22:55:46 +0100
commitec6bec1983a8ecd2dc9f3fa075964be64cad3981 (patch)
tree4155efe0c5915dbb058e3abe1399ff719ddcd216 /vim/.vimrc
parentd5ff981fa61890c3df2997fd35f189e409476d0d (diff)
downloaddotfiles-ec6bec1983a8ecd2dc9f3fa075964be64cad3981.tar.gz
dotfiles-ec6bec1983a8ecd2dc9f3fa075964be64cad3981.tar.bz2
Modularize environment variables
Diffstat (limited to 'vim/.vimrc')
-rw-r--r--vim/.vimrc45
1 files changed, 0 insertions, 45 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
deleted file mode 100644
index c760f86..0000000
--- a/vim/.vimrc
+++ /dev/null
@@ -1,45 +0,0 @@
-" Disable Vi-compatibility
-set nocompatible
-
-" Set paths according to XDG Base Directory specification
-set viminfo+=n${XDG_CACHE_HOME}/vim/viminfo
-set runtimepath=${XDG_CONFIG_HOME}/vim,$VIM,$VIMRUNTIME,${XDG_CONFIG_HOME}/vim/after
-let g:netrw_home = "${XDG_CACHE_HOME}/vim"
-
-" Syntax highlighting
-syntax on
-
-" Enable the filetype plugin
-filetype plugin indent on
-" LaTeX instead of Plain TeX
-let g:tex_flavor = "latex"
-
-" Status line and numbers
-set laststatus=2
-set number
-set relativenumber
-set ruler
-
-" Splits
-set splitbelow
-set splitright
-
-" Colors
-set background=dark
-
-" Ignore some additional patterns when opening files
-set wildignore+=*.o,*.so,*.swp,*/__pycache__/*
-
-" Search subdirectories with :find & co
-set path+=**
-
-" Better completion
-set wildmenu
-set wildmode=longest:full,full
-
-" netrw
-let g:netrw_banner=0
-" let g:netrw_browse_split=4
-let g:netrw_altv=1
-let g:netrw_liststyle=3
-let g:netrw_list_hide=netrw_gitignore#Hide()