Merge branch 'main' of https://git.xenia.me.uk/xenia/nixos
This commit is contained in:
commit
11634c227d
|
@ -1,30 +0,0 @@
|
||||||
local wezterm = require "wezterm"
|
|
||||||
local act = wezterm.action
|
|
||||||
|
|
||||||
local function isViProcess(pane)
|
|
||||||
-- get_foreground_process_name On Linux, macOS and Windows,
|
|
||||||
-- the process can be queried to determine this path. Other operating systems
|
|
||||||
-- (notably, FreeBSD and other unix systems) are not currently supported
|
|
||||||
return pane:get_foreground_process_name():find "n?vim" ~= nil
|
|
||||||
-- return pane:get_title():find("n?vim") ~= nil
|
|
||||||
end
|
|
||||||
|
|
||||||
local function conditionalActivatePane(window, pane, pane_direction, vim_direction)
|
|
||||||
if isViProcess(pane) then
|
|
||||||
window:perform_action(
|
|
||||||
-- This should match the keybinds you set in Neovim.
|
|
||||||
act.SendKey { key = vim_direction, mods = "ALT" },
|
|
||||||
pane
|
|
||||||
)
|
|
||||||
else
|
|
||||||
window:perform_action(act.ActivatePaneDirection(pane_direction), pane)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
wezterm.on(
|
|
||||||
"ActivatePaneDirection-right",
|
|
||||||
function(window, pane) conditionalActivatePane(window, pane, "Right", "l") end
|
|
||||||
)
|
|
||||||
wezterm.on("ActivatePaneDirection-left", function(window, pane) conditionalActivatePane(window, pane, "Left", "h") end)
|
|
||||||
wezterm.on("ActivatePaneDirection-up", function(window, pane) conditionalActivatePane(window, pane, "Up", "k") end)
|
|
||||||
wezterm.on("ActivatePaneDirection-down", function(window, pane) conditionalActivatePane(window, pane, "Down", "j") end)
|
|
|
@ -7,8 +7,6 @@
|
||||||
local scheme_name = "tokyonight_storm"
|
local scheme_name = "tokyonight_storm"
|
||||||
local scheme = require("wezterm").color.get_builtin_schemes()[scheme_name]
|
local scheme = require("wezterm").color.get_builtin_schemes()[scheme_name]
|
||||||
tab_bar_style.setup(scheme)
|
tab_bar_style.setup(scheme)
|
||||||
-- require("status").setup(scheme)
|
|
||||||
require "navigator"
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
audible_bell = "Disabled",
|
audible_bell = "Disabled",
|
||||||
|
|
Loading…
Reference in a new issue