1
0
Fork 0

fish, wezterm, nvim: colors

This commit is contained in:
Von Random 2023-08-22 19:43:08 +03:00
parent de20bf0470
commit 2d8728a1aa
3 changed files with 8 additions and 3 deletions

View file

@ -1,11 +1,11 @@
function fish_prompt function fish_prompt
set -g prompt_string set -g prompt_string
set -g prev_color set -g prev_color
prompt.add \[ prompt.add \[ brblack
prompt.user prompt.user
prompt.add (prompt_pwd) blue prompt.add (prompt_pwd) blue
prompt.git prompt.git
prompt.add \] prompt.add \] brblack
prompt.add $prompt_bang brred prompt.add $prompt_bang brred
echo $prompt_string echo $prompt_string

View file

@ -2,7 +2,10 @@
local function plugins(use) local function plugins(use)
use 'wbthomason/packer.nvim' use 'wbthomason/packer.nvim'
use 'lifepillar/vim-gruvbox8' use {
'lifepillar/vim-gruvbox8',
branch = 'neovim'
}
use 'hoob3rt/lualine.nvim' use 'hoob3rt/lualine.nvim'
use 'hashivim/vim-terraform' use 'hashivim/vim-terraform'
use 'khaveesh/vim-fish-syntax' use 'khaveesh/vim-fish-syntax'

View file

@ -24,6 +24,8 @@ local tab_bar_active = {
italic = true italic = true
} }
local custom_colors = { local custom_colors = {
cursor_bg = '#cc241d',
cursor_fg = '#ebdbb2',
tab_bar = { tab_bar = {
background = tab_bar_bg, background = tab_bar_bg,
active_tab = tab_bar_active, active_tab = tab_bar_active,