mirror of
https://github.com/meineerde/dotfiles.git
synced 2026-02-11 05:05:19 +00:00
16 lines
327 B
VimL
16 lines
327 B
VimL
set nocompatible " We're running Vim, not Vi!
|
|
|
|
" Initialize pathogen
|
|
call pathogen#infect()
|
|
|
|
set laststatus=2 " Always show the statusline
|
|
set encoding=utf-8 " Necessary to show unicode glyphs
|
|
|
|
set shell=/bin/bash\ -l
|
|
|
|
" 2 spaces soft tabstops
|
|
set ts=2 sts=2 sw=2 expandtab
|
|
|
|
set background=dark
|
|
colorscheme base16-tomorrow
|