diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2021-12-11 00:32:00 -0600 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2021-12-11 00:32:00 -0600 |
commit | d2811dd34138343d2458a1a8cb38ee74ce462b69 (patch) | |
tree | 295716ea1ecf79f3b0a8e3b7cc3f4bc2ca95c0e0 | |
parent | 9599578a86346c91035314306093caaaeba928ec (diff) | |
download | dotconfig-d2811dd34138343d2458a1a8cb38ee74ce462b69.tar.xz dotconfig-d2811dd34138343d2458a1a8cb38ee74ce462b69.zip |
change vim colors and added indicators for spaces and tabs
-rw-r--r-- | nvim/colors/gruvbox-timmy.vim | 3 | ||||
-rwxr-xr-x | nvim/init.vim | 4 | ||||
-rwxr-xr-x | x11/Xresources | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/nvim/colors/gruvbox-timmy.vim b/nvim/colors/gruvbox-timmy.vim index e66e7d5..f9e27f2 100644 --- a/nvim/colors/gruvbox-timmy.vim +++ b/nvim/colors/gruvbox-timmy.vim @@ -90,7 +90,8 @@ let s:gb.dark0_hard = ['#1d2021', 234] " 29-32-33 let s:gb.dark0 = ['#282828', 235] " 40-40-40 let s:gb.dark0_soft = ['#32302f', 236] " 50-48-47 let s:gb.dark1 = ['#3c3836', 237] " 60-56-54 -let s:gb.dark2 = ['#504945', 239] " 80-73-69 +"let s:gb.dark2 = ['#504945', 239] " 80-73-69 +let s:gb.dark2 = ['#2b2d2e', 239] " 80-73-69 let s:gb.dark3 = ['#665c54', 241] " 102-92-84 let s:gb.dark4 = ['#7c6f64', 243] " 124-111-100 let s:gb.dark4_256 = ['#7c6f64', 243] " 124-111-100 diff --git a/nvim/init.vim b/nvim/init.vim index d3f556c..b3cf6ba 100755 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -26,6 +26,8 @@ set smartcase " ...Unless the search term is capital set splitbelow splitright " Open splits on bottom/right instead of top/left set termguicolors " Enable GUI colors for the terminal to get truecolor set wildmode=longest,list,full " Enable file auto-complete +set listchars=tab:⇥\ \,space:· " Highlight tabs and spaces +set list " Show whitespace characters defined in listchars syntax on " Enable syntax highlighting " Filetype options @@ -84,7 +86,7 @@ endif " Behaviors exclusive to either the tty or a terminal emulator in a graphical environment function GetTermPID(temu) let pinfo = ['', getpid(), ''] - while !(pinfo[2] =~ a:temu) + while !(pinfo[2] =~ a:temu) let pinfo = split(system('ps h -o pid,ppid,command= -p' . pinfo[1])) endwhile return pinfo[0] diff --git a/x11/Xresources b/x11/Xresources index fda8c8e..3b8a9fe 100755 --- a/x11/Xresources +++ b/x11/Xresources @@ -1,6 +1,6 @@ Xft.dpi: 144 -Xcursor.theme: Adwaita +Xcursor.theme: default Xcursor.size: 36 Sxiv.foreground: #bbbbbb |