mirror of
https://github.com/meineerde/dotfiles.git
synced 2026-02-06 09:03:23 +00:00
19 lines
406 B
VimL
19 lines
406 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
|
|
|
|
syntax enable
|
|
colorscheme Tomorrow-Night-Bright
|
|
|
|
" Make backspace key work like most other apps
|
|
set backspace=indent,eol,start
|