This commit is contained in:
2025-11-10 20:04:44 -08:00
parent c3711f7428
commit e8d127bb68
4 changed files with 30 additions and 27 deletions

View File

@@ -1,28 +1,27 @@
# Colors (Gruvbox Material Hard Dark)
# Colors (Custom Light Theme)
# Default colors
[colors.primary]
background = '#1d2021'
foreground = '#d4be98'
background = '#e5dfd3'
foreground = '#4a5353'
# Normal colors
[colors.normal]
black = '#32302f'
red = '#ea6962'
green = '#a9b665'
yellow = '#d8a657'
blue = '#7daea3'
magenta = '#d3869b'
cyan = '#89b482'
white = '#d4be98'
black = '#4a5353'
red = '#896d6d'
green = '#6d896d'
yellow = '#89896d'
blue = '#6d6d89'
magenta = '#896d89'
cyan = '#6d8989'
white = '#e5dfd3'
# Bright colors (same as normal colors)
# Bright colors
[colors.bright]
black = '#32302f'
red = '#ea6962'
green = '#a9b665'
yellow = '#d8a657'
blue = '#7daea3'
magenta = '#d3869b'
cyan = '#89b482'
white = '#d4be98'
black = '#4a5353'
red = '#a38989'
green = '#89a389'
yellow = '#a3a389'
blue = '#8989a3'
magenta = '#a389a3'
cyan = '#89a3a3'
white = '#e5dfd3'

View File

@@ -23,7 +23,7 @@
(setq vterm-shell "/bin/zsh")
;; Theme & background color
(load-theme 'modus-operandi-tinted t)
(load-theme 'doom-earl-grey t)
;;(set-face-background 'default "#E8D8B0")
;; Lockfiles
@@ -238,12 +238,12 @@
(eww-browse-url link)
(message "No link to open."))))
(defun opal/elfeed-open-in-librewolf ()
"Open the current Elfeed entry link in LibreWolf."
(defun opal/elfeed-open-in-firefox()
"Open the current Elfeed entry link in firefox."
(interactive)
(let ((link (elfeed-entry-link (elfeed-search-selected :single))))
(if link
(let ((browse-url-generic-program "librewolf"))
(let ((browse-url-generic-program "firefox"))
(browse-url-generic link))
(message "No link to open."))))

View File

@@ -120,9 +120,9 @@ animations {
# windowrulev2 = rounding 0, floating:0, onworkspace:f[1]
# Apply to ALL floating windows except Steam
windowrule = center, class:negative:^(?i)steam$, floating:1
#windowrule = center, class:negative:^(?i)steam$, floating:1
windowrule = maxsize 80% 80%, class:negative:^(?i)steam$, floating:1
windowrule = minsize 360 240, class:negative:^(?i)steam$, floating:1
#windowrule = minsize 360 240, class:negative:^(?i)steam$, floating:1
dwindle {
@@ -153,6 +153,7 @@ input {
touchpad {
natural_scroll = false
tap-to-click = false
}
}

View File

@@ -2,6 +2,9 @@
vim.o.number = true
vim.o.relativenumber = true
vim.o.clipboard = "unnamedplus"
vim.cmd('colorscheme default')
vim.cmd('syntax on')
vim.o.background = 'light'
vim.cmd [[highlight Normal guibg=NONE ctermbg=NONE]]
vim.cmd [[highlight NormalNC guibg=NONE ctermbg=NONE]]