-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Sleroq <sleroq@sleroq.link>
- Loading branch information
Showing
10 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# ============================================= # | ||
# Start with defaults from the Sensible plugin # | ||
# --------------------------------------------- # | ||
run-shell @sensible_rtp@ | ||
# ============================================= # | ||
|
||
set -g default-terminal "screen" | ||
set -g base-index 0 | ||
setw -g pane-base-index 0 | ||
|
||
|
||
|
||
|
||
|
||
set -g status-keys emacs | ||
set -g mode-keys emacs | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
set -g mouse on | ||
setw -g aggressive-resize off | ||
setw -g clock-mode-style 12 | ||
set -s escape-time 500 | ||
set -g history-limit 2000 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ config, lib, pkgs, ... }: | ||
|
||
with lib; | ||
|
||
{ | ||
config = { | ||
programs.tmux = { | ||
enable = true; | ||
mouse = true; | ||
}; | ||
|
||
nixpkgs.overlays = [ | ||
(self: super: { | ||
tmuxPlugins = super.tmuxPlugins // { | ||
sensible = super.tmuxPlugins.sensible // { rtp = "@sensible_rtp@"; }; | ||
}; | ||
}) | ||
]; | ||
|
||
nmt.script = '' | ||
assertFileExists home-files/.config/tmux/tmux.conf | ||
assertFileContent home-files/.config/tmux/tmux.conf \ | ||
${./mouse-enabled.conf} | ||
''; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters