dotfiles/vimrc

30 lines
686 B
VimL
Raw Normal View History

2021-07-28 23:33:36 -04:00
" _
" _ __(_)___ ___
" | | / / / __ `__ \
" | |/ / / / / / / /
" |___/_/_/ /_/ /_/
"
syntax on
filetype plugin on
2022-05-22 15:32:36 -04:00
let g:onedark_termcolors = 256
colorscheme onedark
" colorscheme pablo
2021-07-28 23:33:36 -04:00
set autoindent
set noexpandtab
set tabstop=4
set shiftwidth=4
" __ __ __ _ __
" / //_/__ __ __/ /_ (_)___ ____/ /____
" / ,< / _ \/ / / / __ \/ / __ \/ __ / ___/
" / /| / __/ /_/ / /_/ / / / / / /_/ (__ )
" /_/ |_\___/\__, /_.___/_/_/ /_/\__,_/____/
" /____/
" Ctrl+Tab: Toggle tab markers
2022-05-22 15:32:36 -04:00
map <C-`> :set list! lcs=tab:\¦\ <CR>
" Ctrl+L: Toggle line numbers
map <C-l> :set number! <CR>
2021-07-28 23:33:36 -04:00