You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
431 B
VimL
24 lines
431 B
VimL
2 years ago
|
lua require('keymap')
|
||
|
|
||
|
filetype plugin indent on
|
||
|
|
||
|
set ts=4 sts=4 sw=4 expandtab
|
||
|
set backspace=indent,eol,start
|
||
|
|
||
|
set relativenumber
|
||
|
|
||
|
set nocompatible
|
||
|
|
||
|
syntax enable
|
||
|
colorscheme hybrid
|
||
|
|
||
|
" transparent settings
|
||
|
hi Normal ctermbg=NONE
|
||
|
:lua transparent = true
|
||
|
|
||
|
" calcurse notes in markdown
|
||
|
autocmd BufRead,BufNewFile /tmp/calcurse* set filetype=markdown
|
||
|
autocmd BufRead,BufNewFile ~/.local/share/calcurse/notes/* set filetype=markdown
|
||
|
|
||
|
|