Skip to content

Commit

Permalink
fix: Clang15 + wezterm nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
gabyx committed Nov 23, 2023
1 parent c73a8b5 commit 73b6a88
Show file tree
Hide file tree
Showing 7 changed files with 341 additions and 14 deletions.
1 change: 1 addition & 0 deletions config/dot_config/shell/aliases.bash.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ alias lg='lazygit'
alias cdg='cd "$(git rev-parse --show-toplevel)"'

alias v="nvim"
alias vn="nvim-nightly"
8 changes: 4 additions & 4 deletions config/dot_config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ config.window_decorations = "RESIZE"
config.hide_tab_bar_if_only_one_tab = true

config.enable_kitty_keyboard = true
config.debug_key_events = false -- Start `wezterm start --always-new-process` to see the keys
config.disable_default_key_bindings = true
config.debug_key_events = true -- Start `wezterm start --always-new-process` to see the keys
config.disable_default_key_bindings = false

config.leader = { key = "n", mods = "CTRL", timeout_milliseconds = 1000 }
config.keys = {
Expand All @@ -41,8 +41,8 @@ config.keys = {
-- { key = "v", mods = "SUPER", action = act.PasteFrom("Clipboard") },

-- Leader stuff
{ key = "p", mods = "LEADER", action = act.ActivateCommandPalette },
{ key = "n", mods = "LEADER", action = act.SpawnWindow },
{ key = "p", mods = "LEADER", action = act.ActivateCommandPalette },
{ key = "n", mods = "LEADER", action = act.SpawnWindow },
}

-- and finally, return the configuration to wezterm
Expand Down
4 changes: 2 additions & 2 deletions config/keyboard/linux/symbols/programmer
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ xkb_symbols "basic" {
// modifier_map Control { <CAPS> };

// Right Ctrl acts as compose key.
// replace key <RCTL> { [ Multi_key ] };
key <RCTL> { [ Multi_key ] };
// Left Ctrl acts as left Meta key.
// key <LCTL> { [ Meta_L ] };
key <LCTL> { [ Meta_L ] };

// Right Alt acts as right Meta.
// key <RALT> { [ Meta_R ] };
Expand Down
296 changes: 293 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 73b6a88

Please sign in to comment.