This commit is contained in:
cy 2024-12-15 01:59:29 -05:00
parent eb77443d9c
commit ce32eab887
7 changed files with 78 additions and 78 deletions

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
programs.foot = {
enable = true;
settings = {

View file

@ -1,7 +1,4 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
programs.tmux = {
enable = true;
baseIndex = 1;

View file

@ -123,7 +123,7 @@
borderRadius = 10;
font = "DejaVu Sans Mono 11";
padding = "10";
textColor= "#777777";
textColor = "#777777";
extraConfig = ''
background-color=#c00000
border-color=#ff0000

View file

@ -1,15 +1,13 @@
{
...
}: {
{...}: {
programs.zsh = {
enable = true;
autosuggestion = {
enable = true;
strategy = [ "history" "completion" ];
strategy = ["history" "completion"];
};
syntaxHighlighting = {
enable = true;
highlighters = [ "brackets" ];
highlighters = ["brackets"];
};
autocd = true;
defaultKeymap = "emacs";
@ -31,7 +29,7 @@
size = 50000;
append = true;
};
historySubstringSearch= {
historySubstringSearch = {
enable = true;
searchUpKey = "^p";
searchDownKey = "^n";
@ -87,7 +85,7 @@
programs.zoxide = {
enable = true;
enableZshIntegration = true;
options = [ "--cmd cd" ];
options = ["--cmd cd"];
};
programs.eza = {