24 lines
407 B
VimL
24 lines
407 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 t tabnew<Enter>
|
||
|
ab tf tabfind
|
||
|
|