diff --git a/.config/helix/themes/triston.toml b/.config/helix/themes/triston.toml index 8ef5246..ab0e078 100644 --- a/.config/helix/themes/triston.toml +++ b/.config/helix/themes/triston.toml @@ -1,2 +1,2 @@ -inherits = "tokyonight" +inherits = "term16_dark" diff --git a/.wezterm.lua b/.wezterm.lua index b381ea8..fb7c0c4 100644 --- a/.wezterm.lua +++ b/.wezterm.lua @@ -1,24 +1,35 @@ -- Pull in the wezterm API -local wezterm = require 'wezterm' +local wezterm = require("wezterm") -- This will hold the configuration. local config = wezterm.config_builder() +-- set shell to fish +config.default_prog = { '/bin/zsh', '-l' } + -- This is where you actually apply your config choices --- For example, changing the color scheme: -config.font = wezterm.font("JetBrainsMono Nerd Font", {weight="Regular", stretch="Normal", style="Normal"}) -config.color_scheme = 'tokyonight' -config.hide_tab_bar_if_only_one_tab = true -config.window_background_opacity = .9 -config.use_fancy_tab_bar = false -config.tab_bar_at_bottom = true -config.window_padding = { - left = 0, - right = 0, - top = 0, - bottom = 0, +-- my coolnight colorscheme +config.colors = { + foreground = "#CBE0F0", + background = "#011423", + cursor_bg = "#47FF9C", + cursor_border = "#47FF9C", + cursor_fg = "#011423", + selection_bg = "#033259", + selection_fg = "#CBE0F0", + ansi = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#0FC5ED", "#a277ff", "#24EAF7", "#24EAF7" }, + brights = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#A277FF", "#a277ff", "#24EAF7", "#24EAF7" }, } +config.font = wezterm.font("FiraCode Nerd Font") +config.font_size = 19 + +config.enable_tab_bar = true + +config.window_decorations = "RESIZE" +config.window_background_opacity = 0.75 +config.macos_window_background_blur = 50 + -- and finally, return the configuration to wezterm return config