Initial commit
This commit is contained in:
commit
4ac9c221ca
18
dot_wezterm.lua
Normal file
18
dot_wezterm.lua
Normal file
@ -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
|
||||
|
11
private_dot_config/helix/config.toml
Normal file
11
private_dot_config/helix/config.toml
Normal file
@ -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
|
6
private_dot_config/private_fish/config.fish
Normal file
6
private_dot_config/private_fish/config.fish
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user