Skip to content

Commit

Permalink
feat(nvim): conditionally load tmux.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
KirkEasterson committed Oct 17, 2024
1 parent f24d5dc commit df3d3d1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nvim/.config/nvim/lua/kirk/plugins/util/tmux.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
return {
"aserowy/tmux.nvim",
event = "VeryLazy",
cond = function ()
return os.getenv("TMUX") ~= nil
end,
lazy = false,
keys = {
{
"<C-h>",
Expand Down

0 comments on commit df3d3d1

Please sign in to comment.