summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc8
1 files changed, 6 insertions, 2 deletions
diff --git a/.vimrc b/.vimrc
index 1b6d812..c760f86 100644
--- a/.vimrc
+++ b/.vimrc
@@ -3,7 +3,7 @@ set nocompatible
" Set paths according to XDG Base Directory specification
set viminfo+=n${XDG_CACHE_HOME}/vim/viminfo
-set runtimepath=${XDG_CONFIG_HOME}/vim,${XDG_CONFIG_HOME}/vim/after,$VIM,$VIMRUNTIME
+set runtimepath=${XDG_CONFIG_HOME}/vim,$VIM,$VIMRUNTIME,${XDG_CONFIG_HOME}/vim/after
let g:netrw_home = "${XDG_CACHE_HOME}/vim"
" Syntax highlighting
@@ -20,11 +20,15 @@ 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
+set wildignore+=*.o,*.so,*.swp,*/__pycache__/*
" Search subdirectories with :find & co
set path+=**