stuff
This commit is contained in:
parent
8ca47b27a3
commit
c903813cbc
5 changed files with 26 additions and 29 deletions
|
|
@ -2,7 +2,6 @@
|
|||
# VERSION: 3.0
|
||||
SETUVAR --export EDITOR:nvim
|
||||
SETUVAR LESS:RAW\x2dCONTROL\x2dCHARS
|
||||
SETUVAR --export QT_QPA_PLATFORMTHEME:qt6ct
|
||||
SETUVAR __fish_initialized:3800
|
||||
SETUVAR fish_color_autosuggestion:white
|
||||
SETUVAR fish_color_cancel:white\x1e\x2d\x2dbold
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
[user]
|
||||
email = n.gude@posteo.de
|
||||
name = Never Gude
|
||||
[init]
|
||||
defaultBranch = main
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ vim.o.colorcolumn = "80"
|
|||
-- Set default tabstop and shiftwidth
|
||||
vim.o.tabstop = 4
|
||||
vim.o.shiftwidth = 4
|
||||
vim.o.expandtab = true
|
||||
vim.o.expandtab = false
|
||||
|
||||
-- Show <tab> and trailing spaces
|
||||
vim.o.list = true
|
||||
|
|
@ -42,12 +42,12 @@ vim.o.undofile = true
|
|||
vim.o.confirm = true
|
||||
|
||||
-- local toggle_background = function (obj)
|
||||
-- print(string.find(obj.stdout, "prefer-light"))
|
||||
-- if string.find(obj.stdout, "prefer-light") then
|
||||
-- print('light')
|
||||
-- else
|
||||
-- print('dark')
|
||||
-- end
|
||||
-- print(string.find(obj.stdout, "prefer-light"))
|
||||
-- if string.find(obj.stdout, "prefer-light") then
|
||||
-- print('light')
|
||||
-- else
|
||||
-- print('dark')
|
||||
-- end
|
||||
-- end
|
||||
--
|
||||
-- vim.o.background = 'light'
|
||||
|
|
@ -329,14 +329,14 @@ clue.setup({
|
|||
-- Use and configure mini.hipatterns
|
||||
-- local hipatterns = require('mini.hipatterns')
|
||||
-- hipatterns.setup({
|
||||
-- highlighters = {
|
||||
-- -- Highlight standalone 'FIXME', 'HACK', 'TODO', 'NOTE'
|
||||
-- fixme = { pattern = '%f[%w]()FIXME()%f[%W]', group = 'MiniHipatternsFixme' },
|
||||
-- hack = { pattern = '%f[%w]()HACK()%f[%W]', group = 'MiniHipatternsHack' },
|
||||
-- todo = { pattern = '%f[%w]()TODO()%f[%W]', group = 'MiniHipatternsTodo' },
|
||||
-- note = { pattern = '%f[%w]()NOTE()%f[%W]', group = 'MiniHipatternsNote' },
|
||||
-- highlighters = {
|
||||
-- -- Highlight standalone 'FIXME', 'HACK', 'TODO', 'NOTE'
|
||||
-- fixme = { pattern = '%f[%w]()FIXME()%f[%W]', group = 'MiniHipatternsFixme' },
|
||||
-- hack = { pattern = '%f[%w]()HACK()%f[%W]', group = 'MiniHipatternsHack' },
|
||||
-- todo = { pattern = '%f[%w]()TODO()%f[%W]', group = 'MiniHipatternsTodo' },
|
||||
-- note = { pattern = '%f[%w]()NOTE()%f[%W]', group = 'MiniHipatternsNote' },
|
||||
--
|
||||
-- -- Highlight hex color strings (`#rrggbb`) using that color
|
||||
-- hex_color = hipatterns.gen_highlighter.hex_color(),
|
||||
-- },
|
||||
-- -- Highlight hex color strings (`#rrggbb`) using that color
|
||||
-- hex_color = hipatterns.gen_highlighter.hex_color(),
|
||||
-- },
|
||||
-- })
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ wheel_zoom_on_cursor 0
|
|||
#touchpad_sensitivity 1.0
|
||||
|
||||
## Configure the appearance of page separator
|
||||
#page_separator_width 2
|
||||
page_separator_width 2
|
||||
#page_separator_color 0.9 0.9 0.9
|
||||
|
||||
# Ratio of page width to use for `fit_to_page_width_ratio` command
|
||||
|
|
|
|||
|
|
@ -5,10 +5,10 @@
|
|||
}
|
||||
|
||||
tooltip {
|
||||
font-weight: normal;
|
||||
background: rgba(25, 25, 25, 0.9);
|
||||
border: solid 2px rgba(80, 80, 80, 0.9);
|
||||
border-radius: 0px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -25,7 +25,7 @@ window#waybar.hidden {
|
|||
|
||||
button {
|
||||
/* Use box-shadow instead of border so the text isn't offset */
|
||||
/* box-shadow: inset 0 -2px transparent; */
|
||||
box-shadow: none;
|
||||
/* Avoid rounded borders under each button name */
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
|
|
@ -38,28 +38,24 @@ button:hover {
|
|||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0 4px;
|
||||
color: #999999;
|
||||
background-color: transparent;
|
||||
padding: 0 4px;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: #ffffff;
|
||||
background: #2c2c2c;
|
||||
background-color: #2c2c2c;
|
||||
}
|
||||
|
||||
#workspaces button.focused,
|
||||
#workspaces button.active {
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background-color: #9b0000;
|
||||
}
|
||||
|
||||
.mark {
|
||||
background-color: #505050;
|
||||
color: #9b0000;
|
||||
}
|
||||
|
||||
#mode,
|
||||
|
|
@ -81,8 +77,8 @@ button:hover {
|
|||
#scratchpad,
|
||||
#power-profiles-daemon,
|
||||
#mpd {
|
||||
padding: 0 8px;
|
||||
color: #ffffff;
|
||||
padding: 0 8px;
|
||||
}
|
||||
|
||||
#window,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue