july rice
This commit is contained in:
parent
73f2340ac0
commit
89ab499605
10 changed files with 95 additions and 39 deletions
|
|
@ -1,4 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./tmux.nix
|
||||
./git.nix
|
||||
|
|
@ -17,7 +18,7 @@
|
|||
programs.bash = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
historyControl = ["ignorespace"];
|
||||
historyControl = [ "ignorespace" ];
|
||||
historyIgnore = [
|
||||
":q"
|
||||
"exit"
|
||||
|
|
@ -70,7 +71,7 @@
|
|||
};
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
historyWidgetOptions = ["--height 60% --preview ''"];
|
||||
historyWidgetOptions = [ "--height 60% --preview ''" ];
|
||||
fileWidgetCommand = "command find -L . -mindepth 1 -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' -prune";
|
||||
};
|
||||
programs.direnv = {
|
||||
|
|
@ -92,6 +93,7 @@
|
|||
services.gpg-agent = {
|
||||
enable = true;
|
||||
enableSshSupport = true;
|
||||
pinentry.package = pkgs.pinentry-curses;
|
||||
extraConfig = ''
|
||||
allow-loopback-pinentry
|
||||
'';
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
if set -q FISH_JJ
|
||||
return 0
|
||||
end
|
||||
if not jj root &>/dev/null
|
||||
if not jj workspace root --ignore-working-copy &>/dev/null
|
||||
return 1
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -25,12 +25,12 @@
|
|||
programs.jujutsu = {
|
||||
enable = true;
|
||||
settings = {
|
||||
core = {
|
||||
fsmonitor = "watchman";
|
||||
watchman = {
|
||||
register-snapshot-trigger = false;
|
||||
};
|
||||
};
|
||||
# core = {
|
||||
# fsmonitor = "watchman";
|
||||
# watchman = {
|
||||
# register-snapshot-trigger = true;
|
||||
# };
|
||||
# };
|
||||
user = {
|
||||
email = "cjriddz@protonmail.com";
|
||||
name = "iofq";
|
||||
|
|
@ -43,9 +43,6 @@
|
|||
backend = "gpg";
|
||||
key = "cjriddz@protonmail.com";
|
||||
};
|
||||
git = {
|
||||
sign-on-push = true;
|
||||
};
|
||||
ui = {
|
||||
default-command = [ "log" ];
|
||||
conflict-marker-style = "git";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue