misc updates
This commit is contained in:
parent
04ae830fd1
commit
73d62cfd33
3 changed files with 8 additions and 10 deletions
|
@ -1,5 +1,6 @@
|
|||
[global]
|
||||
target = "~/bin"
|
||||
asset_filters = "^musl"
|
||||
|
||||
["ellie/atuin"]
|
||||
|
||||
|
@ -44,7 +45,7 @@ asset_filters = ["linux_x86_64.tar.gz", "^.sbom"]
|
|||
["gokcehan/lf"]
|
||||
|
||||
["Peltoche/lsd"]
|
||||
asset_filters = ["x86_64-unknown-linux-gnu"]
|
||||
asset_filters = ["-x86_64-unknown-linux-gnu.tar.gz"]
|
||||
|
||||
["neovim/neovim"]
|
||||
target = "nvim"
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
gtk-application-prefer-dark-theme=true
|
||||
gtk-cursor-theme-name=phinger-cursors-light
|
||||
gtk-icon-theme-name=Papirus-Dark
|
||||
; gtk-theme-name=Catppuccin-Mocha-Rosewater
|
||||
gtk-theme-name=Catppuccin-Mocha
|
||||
|
|
|
@ -1,17 +1,15 @@
|
|||
local wezterm = require("wezterm")
|
||||
local catppuccin = require("colors/catppuccin").setup{}
|
||||
local catppuccin = require("colors/catppuccin").setup({})
|
||||
local keys = require("keys")
|
||||
-- add wezterm to title for wm usage
|
||||
wezterm.on("format-window-title",
|
||||
function()
|
||||
return " - Wezterm"
|
||||
end
|
||||
)
|
||||
wezterm.on("format-window-title", function()
|
||||
return " - Wezterm"
|
||||
end)
|
||||
|
||||
local padding = 10
|
||||
|
||||
return {
|
||||
window_background_opacity = 0.9,
|
||||
-- window_background_opacity = 0.9,
|
||||
window_padding = {
|
||||
left = padding,
|
||||
right = padding,
|
||||
|
@ -27,7 +25,7 @@ return {
|
|||
tab_bar_at_bottom = true,
|
||||
disable_default_key_bindings = true,
|
||||
bold_brightens_ansi_colors = true,
|
||||
default_gui_startup_args = {"start","--always-new-process"},
|
||||
default_gui_startup_args = { "start", "--always-new-process" },
|
||||
keys = keys.keys,
|
||||
key_tables = keys.key_tables,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue