Compare commits

...

3 Commits

3 changed files with 29 additions and 30 deletions

View File

@ -93,6 +93,11 @@ if [ -f /usr/share/doc/fzf/examples/completion.bash ]; then
source /usr/share/doc/fzf/examples/completion.bash source /usr/share/doc/fzf/examples/completion.bash
fi fi
export FZF_DEFAULT_OPTS=" \
--color=bg+:#ccd0da,bg:#eff1f5,spinner:#dc8a78,hl:#d20f39 \
--color=fg:#4c4f69,header:#d20f39,info:#8839ef,pointer:#dc8a78 \
--color=marker:#dc8a78,fg+:#4c4f69,prompt:#8839ef,hl+:#d20f39"
# Add a local un-tracked bash-rc if present # Add a local un-tracked bash-rc if present
if [[ -f ${HOME}/.bashrc_local ]]; if [[ -f ${HOME}/.bashrc_local ]];
then then

View File

@ -1,4 +1,28 @@
gui: gui:
timeFormat: '2006-01-02' timeFormat: '2006-01-02'
mouseEvents: false mouseEvents: false
theme:
activeBorderColor:
- '#40a02b'
- bold
inactiveBorderColor:
- '#6c6f85'
optionsTextColor:
- '#1e66f5'
selectedLineBgColor:
- '#ccd0da'
cherryPickedCommitBgColor:
- '#bcc0cc'
cherryPickedCommitFgColor:
- '#40a02b'
unstagedChangesColor:
- '#d20f39'
defaultFgColor:
- '#4c4f69'
searchingActiveBorderColor:
- '#df8e1d'
authorColors:
'*': '#7287fd'

View File

@ -730,36 +730,6 @@ require('lazy').setup({
telescope = true, telescope = true,
which_key = true, which_key = true,
}, },
color_overrides = {
latte = {
rosewater = '#cc7983',
flamingo = '#bb5d60',
pink = '#d54597',
mauve = '#a65fd5',
red = '#b7242f',
maroon = '#db3e68',
peach = '#e46f2a',
yellow = '#bc8705',
green = '#1a8e32',
teal = '#00a390',
sky = '#089ec0',
sapphire = '#0ea0a0',
blue = '#017bca',
lavender = '#8584f7',
text = '#444444',
subtext1 = '#555555',
subtext0 = '#666666',
overlay2 = '#777777',
overlay1 = '#888888',
overlay0 = '#999999',
surface2 = '#aaaaaa',
surface1 = '#bbbbbb',
surface0 = '#cccccc',
base = '#fffffa',
mantle = '#eeeeee',
crust = '#dddddd',
},
},
}, },
init = function() init = function()
vim.cmd.colorscheme 'catppuccin' vim.cmd.colorscheme 'catppuccin'