Compare commits

..

5 commits

Author SHA1 Message Date
Sean Buckley
bb81bea4b3 rename bck-settings.sh 2024-09-25 19:27:40 -04:00
Sean Buckley
2acf58f520 re-enable vscode python plugin 2024-09-23 14:03:04 -04:00
Sean Buckley
bb0af6f779 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/345c263f2f53a3710abe117f28a5cb86d0ba4059' (2024-09-13)
  → 'github:NixOS/nixpkgs/9357f4f23713673f310988025d9dc261c20e70c6' (2024-09-21)
2024-09-23 13:52:03 -04:00
Sean Buckley
2c7c22a5ef add git glogl alias 2024-09-21 23:53:02 -04:00
Sean Buckley
5c00978ca7 bat: no pager 2024-09-21 20:46:38 -04:00
5 changed files with 9 additions and 8 deletions

View file

@ -17,11 +17,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1726243404,
"narHash": "sha256-sjiGsMh+1cWXb53Tecsm4skyFNag33GPbVgCdfj3n9I=",
"lastModified": 1726937504,
"narHash": "sha256-bvGoiQBvponpZh8ClUcmJ6QnsNKw0EMrCQJARK3bI1c=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "345c263f2f53a3710abe117f28a5cb86d0ba4059",
"rev": "9357f4f23713673f310988025d9dc261c20e70c6",
"type": "github"
},
"original": {

View file

@ -48,7 +48,7 @@
''))
(writeShellScriptBin "bat" ''
${bat}/bin/bat --color=always --wrap=never --terminal-width=80 "$@"
${bat}/bin/bat --pager=never --color=always --wrap=never --terminal-width=80 "$@"
'')
(writeShellScriptBin "hd" ''
@ -106,6 +106,7 @@
alias.dn = "pull";
alias.sh = "show";
alias.glog = "log --all --decorate --oneline --graph";
alias.glogl = "log --all --decorate --oneline --graph -n10";
alias.logl = "log --oneline -n10";
alias.vlog = "log --name-status";
core.pager = "less -x1,5";

View file

@ -6,14 +6,14 @@
esbenp.prettier-vscode
jnoortheen.nix-ide
ms-azuretools.vscode-docker
# ms-python.python # currently broken (2024-09-16)
ms-python.python
redhat.vscode-yaml
shardulm94.trailing-spaces
];
})
];
environment.etc."my-settings.sh".text = ''
environment.etc."bck-settings.sh".text = ''
mkdir -p ~/.config/Code/User
ln -sf /etc/vscode-settings.json ~/.config/Code/User/settings.json
ln -sf /etc/vscode-keybindings.json ~/.config/Code/User/keybindings.json

View file

@ -37,7 +37,7 @@ in
'')
];
environment.etc."my-settings.sh".text = ''
environment.etc."bck-settings.sh".text = ''
gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
gsettings set org.gnome.desktop.interface enable-hot-corners false
gsettings set org.gnome.desktop.interface gtk-theme 'Adwaita-dark'

View file

@ -24,7 +24,7 @@
systemd.tmpfiles.rules = [ "e /home/sean/Downloads - - - 9d" ];
environment.etc."my-settings.sh".text = ''
environment.etc."bck-settings.sh".text = ''
git config --global user.email "sean.bck@gmail.com"
git config --global user.name "Sean Buckley"
'';