From d4e3b41244ddb0f21654208017e58bc7da117bf8 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Fri, 16 Sep 2022 19:43:28 -0500 Subject: [PATCH] vim terminal mode colors --- .bashrc | 6 +++++- .vimrc | 23 ++++++++++++++++++++++- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index b4a631a..967cd56 100644 --- a/.bashrc +++ b/.bashrc @@ -79,7 +79,11 @@ fi # 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? 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 # add the Go bindir to the path if we have the standard Go install dir diff --git a/.vimrc b/.vimrc index 85a1681..55cf482 100644 --- a/.vimrc +++ b/.vimrc @@ -341,8 +341,29 @@ tnoremap :tabnew " ctrl-shift-n creates a new tab with a terminal tnoremap :tab term tnoremap :tab term -" ---------------------------------------------------------------------------}}} +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 -----------------------------------------------------{{{ " new text object: "next paren". means the next open paren on the current