dotfiles/.vimrc

36 lines
592 B
VimL
Raw Normal View History

2020-09-14 10:18:35 +02:00
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:#
2020-09-20 14:00:57 +02:00
packadd! onedark.vim
syntax on
2020-09-14 10:18:35 +02:00
let g:onedark_termcolors=16
2020-09-20 16:09:03 +02:00
let onedark_terminal_italics=1
2020-09-14 10:18:35 +02:00
colorscheme onedark