diff options
| -rw-r--r-- | .wezterm.lua | 57 | ||||
| -rw-r--r-- | config.fish | 6 | ||||
| -rw-r--r-- | configs.toml | 62 | ||||
| -rw-r--r-- | swayimg/config | 8 | ||||
| -rw-r--r-- | wallust/templates/colors_fish.fish | 2 |
5 files changed, 44 insertions, 91 deletions
diff --git a/.wezterm.lua b/.wezterm.lua deleted file mode 100644 index f2c23d4..0000000 --- a/.wezterm.lua +++ /dev/null @@ -1,57 +0,0 @@ --- Pull in the wezterm API -local wezterm = require 'wezterm' - --- This table will hold the configuration. -local config = {} - --- In newer versions of wezterm, use the config_builder which will --- help provide clearer error messages -if wezterm.config_builder then - config = wezterm.config_builder() -end - --- This is where you actually apply your config choices - --- For example, changing the color scheme: --- config.color_scheme = 'Catppuccin Macchiato' - -local scheme = wezterm.color.get_builtin_schemes()['Catppuccin Macchiato'] -scheme.ansi = { - "#414559", - "#ed4760", - "#87d86c", - "#edc576", - "#6192f4", - "#f492da", - "#60d6c4", - "#CDD2E4", -} - -scheme.brights = { - "#51576d", - "#ed4760", - "#87d86c", - "#edc576", - "#6192f4", - "#f492da", - "#60d6c4", - "#DADFF1", -} - -config.color_schemes = { - ["BETTERppuccin"] = scheme -} -config.color_scheme = "BETTERppuccin" - --- config.font = wezterm.font 'FiraCode Nerd Font' -config.font = wezterm.font_with_fallback { - 'FiraCode Nerd Font', -} -config.font_size = 11.0 - -config.hide_tab_bar_if_only_one_tab = true - --- config.front_end = "Software" - --- and finally, return the configuration to wezterm -return config diff --git a/config.fish b/config.fish index aa362fb..0a95e40 100644 --- a/config.fish +++ b/config.fish @@ -4,6 +4,8 @@ set -e TERMCAP set -e MANPATH set -Ux STARSHIP_CONFIG ~/.config/starship/starship.toml +source ~/.config/fish/colors.fish + pyenv init - | source zoxide init fish | source starship init fish | source @@ -14,7 +16,7 @@ function starship_transient_prompt_func end function fish_greeting - set_color f0c6c6; echo ; set_color normal + set_color $welcome_color; echo ; set_color normal end function xcd @@ -29,8 +31,6 @@ if status is-interactive alias nv=nvim alias lg=lazygit - source ~/.config/fish/colors.fish - fish_vi_key_bindings enable_transience end diff --git a/configs.toml b/configs.toml index 163e99a..9a62ae3 100644 --- a/configs.toml +++ b/configs.toml @@ -1,59 +1,59 @@ +[rofi] +file = "rofi" +parent = "/home/josh/.config" + +[kanata] +file = "keybs" +parent = "/home/josh/.config" + +[nvim] +file = "nvim" +parent = "/home/josh/.config" + [fish] file = "config.fish" parent = "/home/josh/.config/fish" +[sway] +file = "sway" +parent = "/home/josh/.config" + [wallust] file = "wallust" parent = "/home/josh/.config" -[kitty] -file = "kitty.conf" +[swayimg] +file = "swayimg" parent = "/home/josh/.config" -[kanata] -file = "keybs" +[waybar] +file = "waybar" parent = "/home/josh/.config" -[zathura] -file = "zathura" +[xplr] +file = "xplr" parent = "/home/josh/.config" [tmux] file = ".tmux.conf" parent = "/home/josh" -[tex] -file = "texmf" -parent = "/home/josh" - -[waybar] -file = "waybar" +[zathura] +file = "zathura" parent = "/home/josh/.config" -[sway] -file = "sway" +[lectern] +file = "lectern" parent = "/home/josh/.config" -[nvim] -file = "nvim" -parent = "/home/josh/.config" +[tex] +file = "texmf" +parent = "/home/josh" [vim] file = ".vimrc" parent = "/home/josh" -[wezterm] -file = ".wezterm.lua" -parent = "/home/josh" - -[xplr] -file = "xplr" -parent = "/home/josh/.config" - -[lectern] -file = "lectern" -parent = "/home/josh/.config" - -[rofi] -file = "rofi" +[kitty] +file = "kitty.conf" parent = "/home/josh/.config" diff --git a/swayimg/config b/swayimg/config new file mode 100644 index 0000000..0b670b6 --- /dev/null +++ b/swayimg/config @@ -0,0 +1,8 @@ +[general] +overlay = no + +[gallery] +pstore = yes + +[keys.gallery] +Return = exec echo "%"; exit diff --git a/wallust/templates/colors_fish.fish b/wallust/templates/colors_fish.fish index c97a2da..56a2356 100644 --- a/wallust/templates/colors_fish.fish +++ b/wallust/templates/colors_fish.fish @@ -37,3 +37,5 @@ set fish_pager_color_selected_background --background={color8.strip} set fish_pager_color_selected_completion {foreground.strip} set fish_pager_color_selected_description {color8.strip} set fish_pager_color_selected_prefix {color10.strip} + +set welcome_color {color14.strip} |