Skip to content

Commit

Permalink
feat: slight tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
KingMichaelPark committed Feb 4, 2025
1 parent 1b491fe commit 6ab9ce6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ghostty/.config/ghostty/config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Appearance
background = "#000000"
background = "#111111"
background-blur-radius = 20
background-opacity = 0.95
copy-on-select = clipboard
Expand Down
4 changes: 2 additions & 2 deletions lazygit/.config/lazygit/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ gui:
optionsTextColor:
- '#89b4fa'
selectedLineBgColor:
- '#313244'
- '#1e1e2e'
cherryPickedCommitBgColor:
- '#45475a'
- '#1e1e2e'
cherryPickedCommitFgColor:
- '#b4befe'
unstagedChangesColor:
Expand Down
10 changes: 5 additions & 5 deletions nvim/.config/nvim/lua/plugins/snacks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ return {
},
},
keys = {
{ "<leader>fb", function() Snacks.picker.buffers() end, desc = "Buffers" },
{ "<leader>:", function() Snacks.picker.command_history() end, desc = "Command History" },
{ "<leader>fb", function() Snacks.picker.buffers() end, desc = "Buffers" },
{ "<leader>ff", function() Snacks.picker.files({ hidden = true }) end, desc = "Find Files" },
{ "<leader>fb", function() Snacks.picker.buffers() end, desc = "Buffers" },
{ "<leader>:", function() Snacks.picker.command_history() end, desc = "Command History" },
{ "<leader>fb", function() Snacks.picker.buffers() end, desc = "Buffers" },
{ "<leader><leader>", function() Snacks.picker.files({ hidden = true }) end, desc = "Find Files" },
{
"<leader><space>",
"<leader>fg",
function()
local ok, _ = pcall(function()
Snacks.picker.git_files({ hidden = true, untracked = true })
Expand Down
2 changes: 1 addition & 1 deletion zsh/.zshenv
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export VISUAL=nvim
export FZF_DEFAULT_COMMAND="fd --type f --strip-cwd-prefix --hidden --exclude .git"
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
export FZF_DEFAULT_OPTS="
--color=bg+:#1a1a1a,spinner:#f5e0dc,hl:#f38ba8 \
--color=bg+:#111111,spinner:#f5e0dc,hl:#f38ba8 \
--color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#cba6f7 \
--color=marker:#f5e0dc,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 \
--multi --reverse --info=hidden"
Expand Down

0 comments on commit 6ab9ce6

Please sign in to comment.