aidsmaxxing
This commit is contained in:
parent
ff8ff81a4e
commit
fafb1bb009
31 changed files with 847 additions and 377 deletions
|
|
@ -1,8 +1,13 @@
|
|||
{lib, ...}: {
|
||||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./yazi.nix
|
||||
./shell.nix
|
||||
./zellij.nix
|
||||
./symlink.nix
|
||||
./fastfetch.nix
|
||||
./tmux.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
12
modules/home-manager/cli/symlink.nix
Normal file
12
modules/home-manager/cli/symlink.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
config,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
#xdg.configFile."tmuxcon" = {
|
||||
# recursive = true;
|
||||
# source =
|
||||
# config.lib.file.mkOutOfStoreSymlink
|
||||
# (inputs.self + /config/tmux);
|
||||
#};
|
||||
}
|
||||
25
modules/home-manager/cli/tmux.nix
Normal file
25
modules/home-manager/cli/tmux.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
#shortcut = "a";
|
||||
#prefix = "C-a";
|
||||
extraConfig = ''
|
||||
# https://old.reddit.com/r/tmux/comments/mesrci/tmux_2_doesnt_seem_to_use_256_colors/
|
||||
#set -g status-bg colour99
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @rose_pine_variant 'main'
|
||||
set -g @plugin 'rose-pine/tmux'
|
||||
|
||||
# easy-to-remember split pane commands
|
||||
bind | split-window -h -c "#{pane_current_path}"
|
||||
bind - split-window -v -c "#{pane_current_path}"
|
||||
bind c new-window -c "#{pane_current_path}"
|
||||
set -g @rose_pine_host 'on'
|
||||
set -g @rose_pine_hostname_short 'on'
|
||||
|
||||
set -g @rose_pine_user 'on'
|
||||
set -g @rose_pine_directory 'on'
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
enableBashIntegration = true; # Or zsh
|
||||
settings = {
|
||||
theme = "rose-pine";
|
||||
pane_frames = false;
|
||||
show_startup_tips = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue