dotwryn/env/env.vim

28 lines
821 B
VimL
Raw Normal View History

" -- RC Resources ----------------------------------------------- {{{
2021-02-25 00:38:02 +00:00
let $DOTWRYN=expand("$HOME/.wryn")
let $WRYNVIMPATH=expand("$DOTWRYN/vim")
let $WRYNVIMRC=expand("$WRYNVIMPATH/rc.vim")
2020-10-09 22:55:57 +00:00
let $BASHRC=expand("$HOME/.bashrc")
let $ZSHRC=expand("$HOME/.zshrc")
" }}}
2020-01-08 19:40:53 +00:00
2021-02-25 00:38:02 +00:00
" -- Leader bindings -------------------------------------------- {{{
let mapleader = "\\"
2021-08-23 22:33:24 +00:00
nmap <BS> <Nop>
let maplocalleader = "\<BS>"
2021-02-25 00:38:02 +00:00
" }}}
" -- Colorscheme Settings --------------------------------------- {{{
" favorites : tigrana-256-dark, codedark, lilydjwg_dark, up, skittles_autumn,
" ........... vice, lanox, nightsky, made_of_code, moss, skittles_berry, pf_earth
"
" customs : snow
2021-02-24 22:29:07 +00:00
let $COLORSCHEME="default"
" }}}
2020-10-09 22:55:57 +00:00
" -- Web Browser Settings --------------------------------------- {{{
" set the webbrowser locally
2021-02-24 22:29:07 +00:00
"let $WEBBROWSER=""
2020-10-09 22:55:57 +00:00
" }}}