nix fmt
This commit is contained in:
parent
eb77443d9c
commit
ce32eab887
7 changed files with 78 additions and 78 deletions
|
@ -1,6 +1,4 @@
|
|||
{
|
||||
...
|
||||
}: {
|
||||
{...}: {
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
baseIndex = 1;
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
borderRadius = 10;
|
||||
font = "DejaVu Sans Mono 11";
|
||||
padding = "10";
|
||||
textColor= "#777777";
|
||||
textColor = "#777777";
|
||||
extraConfig = ''
|
||||
background-color=#c00000
|
||||
border-color=#ff0000
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue