From 4ac9c221cab67037e897e7eae804bd068448ee89 Mon Sep 17 00:00:00 2001 From: c Date: Wed, 12 Mar 2025 18:33:49 +0100 Subject: [PATCH] Initial commit --- dot_wezterm.lua | 18 ++++++++++++++++++ private_dot_config/helix/config.toml | 11 +++++++++++ private_dot_config/private_fish/config.fish | 6 ++++++ 3 files changed, 35 insertions(+) create mode 100644 dot_wezterm.lua create mode 100644 private_dot_config/helix/config.toml create mode 100644 private_dot_config/private_fish/config.fish diff --git a/dot_wezterm.lua b/dot_wezterm.lua new file mode 100644 index 0000000..6ef0aaf --- /dev/null +++ b/dot_wezterm.lua @@ -0,0 +1,18 @@ +-- Pull in the wezterm API +local wezterm = require 'wezterm' + +-- This will hold the configuration. +local config = wezterm.config_builder() + +-- This is where you actually apply your config choices +config.keys = { + { + -- F11 + key = "raw:454", + action = wezterm.action.ToggleFullScreen, + }, +} + +-- and finally, return the configuration to wezterm +return config + diff --git a/private_dot_config/helix/config.toml b/private_dot_config/helix/config.toml new file mode 100644 index 0000000..4ef928e --- /dev/null +++ b/private_dot_config/helix/config.toml @@ -0,0 +1,11 @@ +[editor] +clipboard-provider = "termcode" +auto-pairs = false # defaults to `true` +line-number = "relative" +mouse = false + +[editor.soft-wrap] +enable = true +max-wrap = 25 # increase value to reduce forced mid-word wrapping +max-indent-retain = 0 +# wrap-indicator = "" # set wrap-indicator to "" to hide it diff --git a/private_dot_config/private_fish/config.fish b/private_dot_config/private_fish/config.fish new file mode 100644 index 0000000..4f78d12 --- /dev/null +++ b/private_dot_config/private_fish/config.fish @@ -0,0 +1,6 @@ +if status is-interactive + # Commands to run in interactive sessions can go here +end + +fish_add_path ~/.local/bin +abbr -a -- hx helix