23 lines
388 B
VimL
23 lines
388 B
VimL
let g:onedark_termcolors=256
|
|
colorscheme onedark
|
|
set autoindent
|
|
set relativenumber " show relative number lines
|
|
set number " but absolute number for current line
|
|
set showcmd
|
|
set encoding=utf-8
|
|
scriptencoding utf-8
|
|
|
|
" show whitespaces
|
|
set list
|
|
set listchars=eol:¬,tab:>\ ,trail:⋅
|
|
|
|
" tab length
|
|
set tabstop=5
|
|
|
|
" search path recursive
|
|
set path+=**
|
|
|
|
" abbreviations
|
|
ab tf tabfind
|
|
|