Skip to content

Commit

Permalink
Merge pull request #70 from redyf/dev
Browse files Browse the repository at this point in the history
dev
  • Loading branch information
redyf authored May 4, 2024
2 parents f9bf850 + 9847be7 commit fac1375
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
1 change: 0 additions & 1 deletion home/redyf/apps/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ _: {
./insomnia
./misc
./obs
./pom
# ./vscode
];
}
8 changes: 7 additions & 1 deletion home/redyf/apps/emacs/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{pkgs, ...}: {
programs.emacs = {
enable = true;
package = pkgs.emacs; # replace with pkgs.emacs-gtk, or a version provided by the community overlay if desired.
package = pkgs.emacs.override {
withGTK3 = true;
withGTK2 = false;
withPgtk = true; # true on wayland
withNativeCompilation = true;
withTreeSitter = true;
};
};
services.emacs = {
enable = true;
Expand Down
7 changes: 0 additions & 7 deletions home/redyf/apps/pom/default.nix

This file was deleted.

4 changes: 2 additions & 2 deletions home/redyf/cli-apps/tmux/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ in {
# Keybinds
#--------------------------------------------------------------------------
# Shift Alt vim keys to switch windows
bind -n M-H previous-window
bind -n M-L next-window
bind -n M-J previous-window
bind -n M-K next-window
# Open panes in current directory
bind '"' split-window -v -c "#{pane_current_path}"
Expand Down

0 comments on commit fac1375

Please sign in to comment.