From 68747f19e222af783c162aa99ee537fbfa1919fd Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Sun, 18 Oct 2020 22:02:04 -0400 Subject: [PATCH] Back to wezterm --- hammerspoon/init.lua | 2 +- wezterm/wezterm.lua | 13 ++++++++++++- zsh/funcs/batman | 4 ++++ 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 zsh/funcs/batman diff --git a/hammerspoon/init.lua b/hammerspoon/init.lua index 23cab2c..aaa8d7c 100644 --- a/hammerspoon/init.lua +++ b/hammerspoon/init.lua @@ -17,7 +17,7 @@ hs.hotkey.bind({"cmd", "alt", "ctrl"}, "SPACE", function () end) hs.hotkey.bind({"ctrl"}, "t", function () - hs.application.launchOrFocus("Kitty") + hs.application.launchOrFocus("Wezterm") end) hs.hotkey.bind({"cmd", "alt"}, ",", function () diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index b70ace1..9ac7d2a 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -24,7 +24,7 @@ return { term = "xterm-256color", -- Color Scheme(s) - color_scheme = "Corvine", + color_scheme = "OceanicNext", color_schemes = { ["Corvine"] = { background = "#262626", @@ -34,6 +34,17 @@ return { ansi = {"#3a3a3a", "#d7d7d7", "#87af5f", "#d7d7af", "#87afd7", "#afafd7", "#87d7d7", "#c6c6c6"}, brights = {"#626262", "#ffafaf", "#afd787", "#d7d787", "#87d7ff", "#d7afd7", "#5fd7d7", "#eeeeee"} }, + ["OceanicNext"] = { + background = "#1b2b34", + foreground = "#c0c5ce", + -- Overrides the cell background color when the current cell is occupied by the + -- cursor and the cursor style is set to Block + cursor_bg = "#c0c5ce", + -- Overrides the text color when the current cell is occupied by the cursor + cursor_fg = "#1b2b34", + ansi = {"#1b2b34", "#ec5f67", "#99c794", "#fac863", "#6699cc", "#c594c5", "#5fb3b3", "#c0c5ce"}, + brights = {"#65737e", "#ec5f67", "#99c794" ,"#fac863", "#6699cc", "#c594c5", "#5fb3b3", "#d8dee9"} + }, }, -- Tab Bar diff --git a/zsh/funcs/batman b/zsh/funcs/batman new file mode 100644 index 0000000..da0f748 --- /dev/null +++ b/zsh/funcs/batman @@ -0,0 +1,4 @@ +command -v bat > /dev/null +if [[ $? -eq 0 ]]; then + export MANPAGER="sh -c 'col -bx | bat -l man -p'" +fi