From ad7a5b0213b5fbe3a2782b85f48ea62cdd92f04e Mon Sep 17 00:00:00 2001 From: zlg Date: Mon, 25 May 2020 20:41:25 -0700 Subject: vimrc: Switch pico8 colors, vim syntaxing todo.txt is interesting; if it ends up not for me, I'll make my own vim syntax instead. No big deal. --- vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index ed219d1..f2afaf4 100644 --- a/vimrc +++ b/vimrc @@ -31,8 +31,8 @@ Plug 'ledger/vim-ledger', { 'as': 'ledger' } Plug 'rstacruz/sparkup' Plug 'godlygeek/tabular' Plug 'PotatoesMaster/i3-vim-syntax', { 'as': 'i3-syntax' } +Plug 'BordenJardine/pico8-vim-colorscheme', { 'as': 'pico8-color' } Plug 'justinj/vim-pico8-syntax', { 'as': 'pico8-syntax' } -Plug 'evanrelf/vim-pico8-color', { 'as': 'pico8-color' } Plug 'altercation/vim-colors-solarized', { 'as': 'solarized-color' } call plug#end() @@ -90,6 +90,7 @@ set foldtext=MyFoldText() if has("autocmd") filetype plugin indent on autocmd BufNewFile,BufRead /media/sd/Games/*.[0123456789].txt setfiletype sctxt + autocmd BufNewFile,BufRead /home/zlg/text/todo.txt setfiletype todo autocmd BufNewFile,BufRead *.txt setfiletype text " All Markdown and TXT files need to be hard wrapped to 80 characters. autocmd FileType text,markdown setlocal nonumber tabstop=4 softtabstop=4 shiftwidth=4 expandtab formatoptions=tcqwn textwidth=80 nolist colorcolumn=81 -- cgit v1.2.3-54-g00ecf