From 47ef2e3c9a97087032d0dbc2104b4e80b2f9f4d0 Mon Sep 17 00:00:00 2001 From: Bailey Stevens Date: Wed, 22 May 2024 01:25:00 -0400 Subject: [PATCH] Removes unused config files. --- modules/home/core/fish_prompt.fish | 23 -------------------- modules/home/core/wezterm.lua | 34 ------------------------------ 2 files changed, 57 deletions(-) delete mode 100644 modules/home/core/fish_prompt.fish delete mode 100644 modules/home/core/wezterm.lua diff --git a/modules/home/core/fish_prompt.fish b/modules/home/core/fish_prompt.fish deleted file mode 100644 index 1f04db0..0000000 --- a/modules/home/core/fish_prompt.fish +++ /dev/null @@ -1,23 +0,0 @@ -set last_status $status - -set -l fish_color_status (set_color green) -test $last_status -eq 0; or set -l fish_color_status (set_color red) - -set -l normal (set_color normal) - -set -l suffix '>' -if functions -q fish_is_root_user; and fish_is_root_user - set suffix '#' -end - -set -l prompt_status $fish_color_status (string pad -w 3 $last_status) $normal -set -l divider (set_color blue) ' ~~ ' $normal - -set -x __fish_git_prompt_show_informative_status yes - -set -l prompt_nix_shell '' -test $SHLVL -gt 1; and set -l prompt_subshell '+'(math $SHLVL - 1)' ' - -echo -echo -s '[' $prompt_status '] ' $prompt_subshell (prompt_hostname) $divider (set_color cyan) (prompt_pwd) $divider (fish_vcs_prompt ' ' ) -echo -s -n $suffix $normal ' ' diff --git a/modules/home/core/wezterm.lua b/modules/home/core/wezterm.lua deleted file mode 100644 index bd8b4c1..0000000 --- a/modules/home/core/wezterm.lua +++ /dev/null @@ -1,34 +0,0 @@ -local wezterm = require 'wezterm' - -return { - font = wezterm.font("FantasqueSansM Nerd Font"), - font_size = 10.0, - hide_mouse_cursor_when_typing = true, - initial_cols = 120, - initial_rows = 40, - color_scheme = 'Tokyo Night Moon', - keys = { - { key = 'P', mods = 'ALT', action = wezterm.action.ActivateCommandPalette }, - { key = 'Enter', mods = 'ALT|SHIFT', action = wezterm.action.SpawnTab 'CurrentPaneDomain' }, - { key = 'Q', mods = 'ALT', action = wezterm.action.CloseCurrentPane{confirm=false} }, - { key = 'D', mods = 'ALT', action = wezterm.action.SplitVertical{domain='CurrentPaneDomain'} }, - { key = 'R', mods = 'ALT', action = wezterm.action.SplitHorizontal{domain='CurrentPaneDomain'} }, - { key = 'F', mods = 'ALT', action = wezterm.action.ToggleFullScreen }, - { key = 'C', mods = 'CTRL', action = wezterm.action.CopyTo 'Clipboard' }, - { key = 'V', mods = 'CTRL', action = wezterm.action.PasteFrom 'Clipboard' }, - { key = 'PageUp', mods = 'SHIFT', action = wezterm.action.ScrollByPage(-1) }, - { key = 'PageDown', mods = 'SHIFT', action = wezterm.action.ScrollByPage(1) }, - { key = 'PageUp', mods = 'ALT', action = wezterm.action.ActivateTabRelative(-1) }, - { key = 'PageDown', mods = 'ALT|SHIFT', action = wezterm.action.MoveTabRelative(-1) }, - { key = 'PageDown', mods = 'ALT', action = wezterm.action.ActivateTabRelative(1) }, - { key = 'PageDown', mods = 'ALT|SHIFT', action = wezterm.action.MoveTabRelative(1) }, - { key = 'LeftArrow', mods = 'ALT', action = wezterm.action.ActivatePaneDirection 'Left' }, - { key = 'LeftArrow', mods = 'ALT|SHIFT', action = wezterm.action.AdjustPaneSize{ 'Left', 1 } }, - { key = 'RightArrow', mods = 'ALT', action = wezterm.action.ActivatePaneDirection 'Right' }, - { key = 'RightArrow', mods = 'ALT|SHIFT', action = wezterm.action.AdjustPaneSize{ 'Right', 1 } }, - { key = 'UpArrow', mods = 'ALT', action = wezterm.action.ActivatePaneDirection 'Up' }, - { key = 'UpArrow', mods = 'ALT|SHIFT', action = wezterm.action.AdjustPaneSize{ 'Up', 1 } }, - { key = 'DownArrow', mods = 'ALT', action = wezterm.action.ActivatePaneDirection 'Down' }, - { key = 'DownArrow', mods = 'ALT|SHIFT', action = wezterm.action.AdjustPaneSize{ 'Down', 1 } }, - }, -}