stoof
This commit is contained in:
@@ -1,28 +1,27 @@
|
|||||||
# Colors (Gruvbox Material Hard Dark)
|
# Colors (Custom Light Theme)
|
||||||
|
|
||||||
# Default colors
|
# Default colors
|
||||||
[colors.primary]
|
[colors.primary]
|
||||||
background = '#1d2021'
|
background = '#e5dfd3'
|
||||||
foreground = '#d4be98'
|
foreground = '#4a5353'
|
||||||
|
|
||||||
# Normal colors
|
# Normal colors
|
||||||
[colors.normal]
|
[colors.normal]
|
||||||
black = '#32302f'
|
black = '#4a5353'
|
||||||
red = '#ea6962'
|
red = '#896d6d'
|
||||||
green = '#a9b665'
|
green = '#6d896d'
|
||||||
yellow = '#d8a657'
|
yellow = '#89896d'
|
||||||
blue = '#7daea3'
|
blue = '#6d6d89'
|
||||||
magenta = '#d3869b'
|
magenta = '#896d89'
|
||||||
cyan = '#89b482'
|
cyan = '#6d8989'
|
||||||
white = '#d4be98'
|
white = '#e5dfd3'
|
||||||
|
|
||||||
# Bright colors (same as normal colors)
|
# Bright colors
|
||||||
[colors.bright]
|
[colors.bright]
|
||||||
black = '#32302f'
|
black = '#4a5353'
|
||||||
red = '#ea6962'
|
red = '#a38989'
|
||||||
green = '#a9b665'
|
green = '#89a389'
|
||||||
yellow = '#d8a657'
|
yellow = '#a3a389'
|
||||||
blue = '#7daea3'
|
blue = '#8989a3'
|
||||||
magenta = '#d3869b'
|
magenta = '#a389a3'
|
||||||
cyan = '#89b482'
|
cyan = '#89a3a3'
|
||||||
white = '#d4be98'
|
white = '#e5dfd3'
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
(setq vterm-shell "/bin/zsh")
|
(setq vterm-shell "/bin/zsh")
|
||||||
|
|
||||||
;; Theme & background color
|
;; Theme & background color
|
||||||
(load-theme 'modus-operandi-tinted t)
|
(load-theme 'doom-earl-grey t)
|
||||||
;;(set-face-background 'default "#E8D8B0")
|
;;(set-face-background 'default "#E8D8B0")
|
||||||
|
|
||||||
;; Lockfiles
|
;; Lockfiles
|
||||||
@@ -238,12 +238,12 @@
|
|||||||
(eww-browse-url link)
|
(eww-browse-url link)
|
||||||
(message "No link to open."))))
|
(message "No link to open."))))
|
||||||
|
|
||||||
(defun opal/elfeed-open-in-librewolf ()
|
(defun opal/elfeed-open-in-firefox()
|
||||||
"Open the current Elfeed entry link in LibreWolf."
|
"Open the current Elfeed entry link in firefox."
|
||||||
(interactive)
|
(interactive)
|
||||||
(let ((link (elfeed-entry-link (elfeed-search-selected :single))))
|
(let ((link (elfeed-entry-link (elfeed-search-selected :single))))
|
||||||
(if link
|
(if link
|
||||||
(let ((browse-url-generic-program "librewolf"))
|
(let ((browse-url-generic-program "firefox"))
|
||||||
(browse-url-generic link))
|
(browse-url-generic link))
|
||||||
(message "No link to open."))))
|
(message "No link to open."))))
|
||||||
|
|
||||||
|
|||||||
@@ -120,9 +120,9 @@ animations {
|
|||||||
# windowrulev2 = rounding 0, floating:0, onworkspace:f[1]
|
# windowrulev2 = rounding 0, floating:0, onworkspace:f[1]
|
||||||
|
|
||||||
# Apply to ALL floating windows except Steam
|
# 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 = 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 {
|
dwindle {
|
||||||
@@ -153,6 +153,7 @@ input {
|
|||||||
|
|
||||||
touchpad {
|
touchpad {
|
||||||
natural_scroll = false
|
natural_scroll = false
|
||||||
|
tap-to-click = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,9 @@
|
|||||||
vim.o.number = true
|
vim.o.number = true
|
||||||
vim.o.relativenumber = true
|
vim.o.relativenumber = true
|
||||||
vim.o.clipboard = "unnamedplus"
|
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 Normal guibg=NONE ctermbg=NONE]]
|
||||||
vim.cmd [[highlight NormalNC guibg=NONE ctermbg=NONE]]
|
vim.cmd [[highlight NormalNC guibg=NONE ctermbg=NONE]]
|
||||||
|
|||||||
Reference in New Issue
Block a user