Compare commits
12 commits
410effd33a
...
e15e495a6d
| Author | SHA1 | Date | |
|---|---|---|---|
| e15e495a6d | |||
| 275d85db44 | |||
| 0211ac1a3e | |||
| 74a75f5677 | |||
| 80c7f287ff | |||
| c41d3a1086 | |||
| 041e974487 | |||
| 528f27fbe4 | |||
| 0a609e19c0 | |||
| 9aad65bd9c | |||
| f748b2aa97 | |||
| d5d2c761d5 |
5 changed files with 31 additions and 10 deletions
12
flake.lock
generated
12
flake.lock
generated
|
|
@ -159,11 +159,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1760969583,
|
"lastModified": 1761530345,
|
||||||
"narHash": "sha256-vsf5mvR0xxK4GsfLx5bMJAQ4ysdrKymMIifNw+4TP7g=",
|
"narHash": "sha256-+9+YCK9Lh6GThkXu/8JTxMFUnImIdZpb8ElUh6/F5Y8=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "c9d758b500e53db5b74aa02d17dc45b65229e8e9",
|
"rev": "bbaeb9f1c29e79bb1653b32c3d73244cdf4bd888",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -175,11 +175,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1760878510,
|
"lastModified": 1761373498,
|
||||||
"narHash": "sha256-K5Osef2qexezUfs0alLvZ7nQFTGS9DL2oTVsIXsqLgs=",
|
"narHash": "sha256-Q/uhWNvd7V7k1H1ZPMy/vkx3F8C13ZcdrKjO7Jv7v0c=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5e2a59a5b1a82f89f2c7e598302a9cacebb72a67",
|
"rev": "6a08e6bb4e46ff7fcbb53d409b253f6bad8a28ce",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,10 @@
|
||||||
package = pkgs.emptyDirectory;
|
package = pkgs.emptyDirectory;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jujutsu = {
|
||||||
|
package = pkgs.emptyDirectory;
|
||||||
|
};
|
||||||
|
|
||||||
tmux = {
|
tmux = {
|
||||||
# I use scripts that use the passthrough sequence often on this host
|
# I use scripts that use the passthrough sequence often on this host
|
||||||
enablePassthrough = true;
|
enablePassthrough = true;
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,11 @@ in
|
||||||
# * `root`: `jj workspace root` (barely necessary then)
|
# * `root`: `jj workspace root` (barely necessary then)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ui = {
|
||||||
|
# Stop nagging me about it, though I am not a fan of its UI.
|
||||||
|
diff-editor = ":builtin";
|
||||||
|
};
|
||||||
|
|
||||||
# FIXME: git equivalents
|
# FIXME: git equivalents
|
||||||
# I'd like a better formatted blame (more like delta's?)
|
# I'd like a better formatted blame (more like delta's?)
|
||||||
# blame = {
|
# blame = {
|
||||||
|
|
@ -68,7 +73,6 @@ in
|
||||||
# };
|
# };
|
||||||
#
|
#
|
||||||
# ui = {
|
# ui = {
|
||||||
# diff-editor = ":builtin"; # To silence hints
|
|
||||||
# movement = {
|
# movement = {
|
||||||
# edit = false;
|
# edit = false;
|
||||||
# };
|
# };
|
||||||
|
|
|
||||||
|
|
@ -81,9 +81,6 @@ set updatetime=250
|
||||||
" Disable all mouse integrations
|
" Disable all mouse integrations
|
||||||
set mouse=
|
set mouse=
|
||||||
|
|
||||||
" Set dark mode by default
|
|
||||||
set background=dark
|
|
||||||
|
|
||||||
" Setup some overrides for gruvbox
|
" Setup some overrides for gruvbox
|
||||||
lua << EOF
|
lua << EOF
|
||||||
local gruvbox = require("gruvbox")
|
local gruvbox = require("gruvbox")
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,10 @@ in
|
||||||
|
|
||||||
launchTmux = mkEnableOption "auto launch tmux at shell start";
|
launchTmux = mkEnableOption "auto launch tmux at shell start";
|
||||||
|
|
||||||
|
completionSync = {
|
||||||
|
enable = mkEnableOption "zsh-completion-sync plugin";
|
||||||
|
};
|
||||||
|
|
||||||
notify = {
|
notify = {
|
||||||
enable = mkEnableOption "zsh-done notification";
|
enable = mkEnableOption "zsh-done notification";
|
||||||
|
|
||||||
|
|
@ -118,6 +122,18 @@ in
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
(lib.mkIf cfg.completionSync.enable {
|
||||||
|
programs.zsh = {
|
||||||
|
plugins = [
|
||||||
|
{
|
||||||
|
name = "zsh-completion-sync";
|
||||||
|
file = "share/zsh-completion-sync/zsh-completion-sync.plugin.zsh";
|
||||||
|
src = pkgs.zsh-completion-sync;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
||||||
(lib.mkIf cfg.notify.enable {
|
(lib.mkIf cfg.notify.enable {
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
plugins = [
|
plugins = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue