vim terminal mode colors

master
Jordan Orelli 2 years ago
parent 3f0d25f0a0
commit d4e3b41244

@ -79,7 +79,11 @@ fi
# sometimes I just put binary files in a bin dir in my home directory. Is this # sometimes I just put binary files in a bin dir in my home directory. Is this
# gross? I dunno. What are you, some kind of cop? # gross? I dunno. What are you, some kind of cop?
if [ -d "$HOME/bin" ]; then if [ -d "$HOME/bin" ]; then
export PATH=$PATH:$HOME/bin export PATH="$PATH:$HOME/bin"
fi
if [ -d "$HOME/.local/bin" ]; then
export PATH="$PATH:$HOME/.local/bin"
fi fi
# add the Go bindir to the path if we have the standard Go install dir # add the Go bindir to the path if we have the standard Go install dir

@ -341,8 +341,29 @@ tnoremap <C-n><C-n> <C-w>:tabnew<CR>
" ctrl-shift-n creates a new tab with a terminal " ctrl-shift-n creates a new tab with a terminal
tnoremap <C-n><o> <C-w>:tab term<CR> tnoremap <C-n><o> <C-w>:tab term<CR>
tnoremap <C-n><C-o> <C-w>:tab term<CR> tnoremap <C-n><C-o> <C-w>:tab term<CR>
" ---------------------------------------------------------------------------}}}
let g:terminal_ansi_colors = [
\ '#929292',
\ '#e27373',
\ '#94b979',
\ '#ffba7b',
\ '#97bedc',
\ '#e1c0fa',
\ '#00988e',
\ '#dedede',
\ '#bdbdbd',
\ '#ffa1a1',
\ '#bddeab',
\ '#ffdca0',
\ '#b1d8f6',
\ '#fbdaff',
\ '#1ab2a8',
\ '#ffffff'
\ ]
" highlight Terminal guibg='#3b3b3b'
" highlight Terminal guifg='#adadad'
" ---------------------------------------------------------------------------}}}
" Operator-Pending Mode -----------------------------------------------------{{{ " Operator-Pending Mode -----------------------------------------------------{{{
" new text object: "next paren". means the next open paren on the current " new text object: "next paren". means the next open paren on the current

Loading…
Cancel
Save