dotfiles/.vimrc
2020-09-14 10:18:35 +02:00

38 lines
641 B
VimL

syntax on
set wildmenu
set wildmode=longest:list,full
set showmatch
set ruler
set autoindent
set number
set wrap
set smarttab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set noexpandtab
set showmatch
set mat=2
set encoding=utf8
set ffs=unix,dos,mac
set nobackup
set nowritebackup
set noswapfile
set ignorecase
set incsearch
set hlsearch
set smartindent
set noerrorbells
set novisualbell
set t_vb=
set autoread
set backspace=indent,eol,start
set listchars=tab:>-,eol:$,trail:.,extends:#
set background=dark
execute pathogen#infect()
let g:onedark_termcolors=16
colorscheme onedark
let g:dutyl_stdImportPaths=['/usr/include/dlang/dmd']