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]
|
[global]
|
||||||
target = "~/bin"
|
target = "~/bin"
|
||||||
|
asset_filters = "^musl"
|
||||||
|
|
||||||
["ellie/atuin"]
|
["ellie/atuin"]
|
||||||
|
|
||||||
|
@ -44,7 +45,7 @@ asset_filters = ["linux_x86_64.tar.gz", "^.sbom"]
|
||||||
["gokcehan/lf"]
|
["gokcehan/lf"]
|
||||||
|
|
||||||
["Peltoche/lsd"]
|
["Peltoche/lsd"]
|
||||||
asset_filters = ["x86_64-unknown-linux-gnu"]
|
asset_filters = ["-x86_64-unknown-linux-gnu.tar.gz"]
|
||||||
|
|
||||||
["neovim/neovim"]
|
["neovim/neovim"]
|
||||||
target = "nvim"
|
target = "nvim"
|
||||||
|
|
|
@ -2,5 +2,4 @@
|
||||||
gtk-application-prefer-dark-theme=true
|
gtk-application-prefer-dark-theme=true
|
||||||
gtk-cursor-theme-name=phinger-cursors-light
|
gtk-cursor-theme-name=phinger-cursors-light
|
||||||
gtk-icon-theme-name=Papirus-Dark
|
gtk-icon-theme-name=Papirus-Dark
|
||||||
; gtk-theme-name=Catppuccin-Mocha-Rosewater
|
|
||||||
gtk-theme-name=Catppuccin-Mocha
|
gtk-theme-name=Catppuccin-Mocha
|
||||||
|
|
|
@ -1,17 +1,15 @@
|
||||||
local wezterm = require("wezterm")
|
local wezterm = require("wezterm")
|
||||||
local catppuccin = require("colors/catppuccin").setup{}
|
local catppuccin = require("colors/catppuccin").setup({})
|
||||||
local keys = require("keys")
|
local keys = require("keys")
|
||||||
-- add wezterm to title for wm usage
|
-- add wezterm to title for wm usage
|
||||||
wezterm.on("format-window-title",
|
wezterm.on("format-window-title", function()
|
||||||
function()
|
return " - Wezterm"
|
||||||
return " - Wezterm"
|
end)
|
||||||
end
|
|
||||||
)
|
|
||||||
|
|
||||||
local padding = 10
|
local padding = 10
|
||||||
|
|
||||||
return {
|
return {
|
||||||
window_background_opacity = 0.9,
|
-- window_background_opacity = 0.9,
|
||||||
window_padding = {
|
window_padding = {
|
||||||
left = padding,
|
left = padding,
|
||||||
right = padding,
|
right = padding,
|
||||||
|
@ -27,7 +25,7 @@ return {
|
||||||
tab_bar_at_bottom = true,
|
tab_bar_at_bottom = true,
|
||||||
disable_default_key_bindings = true,
|
disable_default_key_bindings = true,
|
||||||
bold_brightens_ansi_colors = 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,
|
keys = keys.keys,
|
||||||
key_tables = keys.key_tables,
|
key_tables = keys.key_tables,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue