summary refs log tree commit diff
path: root/machines/bismuth/home.nix
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2025-01-11 16:16:03 +0100
committerMel <einebeere@gmail.com>2025-01-11 16:16:03 +0100
commit204a0959b6e5c0f7235533ad28dcb65af11f1e2a (patch)
tree58e9bdd291eff528864ba4a09ab62b7c6e362082 /machines/bismuth/home.nix
parent955e83bd5fba137e1bb9fb171938e6d486ba21a0 (diff)
downloadminerals-204a0959b6e5c0f7235533ad28dcb65af11f1e2a.tar.zst
minerals-204a0959b6e5c0f7235533ad28dcb65af11f1e2a.zip
Add extra external plugins to Codium
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'machines/bismuth/home.nix')
0 files changed, 0 insertions, 0 deletions
ral.Number */ .highlight .s { color: #87CEEB } /* Literal.String */ .highlight .na { color: #DDD } /* Name.Attribute */ .highlight .nb { color: #DDD } /* Name.Builtin */ .highlight .nc { color: #DDD } /* Name.Class */ .highlight .no { color: #7FFFD4 } /* Name.Constant */ .highlight .nd { color: #DDD } /* Name.Decorator */ .highlight .ni { color: #DDD } /* Name.Entity */ .highlight .ne { color: #DDD } /* Name.Exception */ .highlight .nf { color: #FF0 } /* Name.Function */ .highlight .nl { color: #DDD } /* Name.Label */ .highlight .nn { color: #DDD } /* Name.Namespace */ .highlight .nx { color: #DDD } /* Name.Other */ .highlight .py { color: #DDD } /* Name.Property */ .highlight .nt { color: #DDD } /* Name.Tag */ .highlight .nv { color: #EEDD82 } /* Name.Variable */ .highlight .ow { color: #F00 } /* Operator.Word */ .highlight .pm { color: #DDD } /* Punctuation.Marker */ .highlight .w { color: #DDD } /* Text.Whitespace */ .highlight .mb { color: #F0F } /* Literal.Number.Bin */ .highlight .mf { color: #F0F } /* Literal.Number.Float */ .highlight .mh { color: #F0F } /* Literal.Number.Hex */ .highlight .mi { color: #F0F } /* Literal.Number.Integer */ .highlight .mo { color: #F0F } /* Literal.Number.Oct */ .highlight .sa { color: #87CEEB } /* Literal.String.Affix */ .highlight .sb { color: #87CEEB } /* Literal.String.Backtick */ .highlight .sc { color: #87CEEB } /* Literal.String.Char */ .highlight .dl { color: #87CEEB } /* Literal.String.Delimiter */ .highlight .sd { color: #87CEEB } /* Literal.String.Doc */ .highlight .s2 { color: #87CEEB } /* Literal.String.Double */ .highlight .se { color: #87CEEB } /* Literal.String.Escape */ .highlight .sh { color: #87CEEB } /* Literal.String.Heredoc */ .highlight .si { color: #87CEEB } /* Literal.String.Interpol */ .highlight .sx { color: #87CEEB } /* Literal.String.Other */ .highlight .sr { color: #87CEEB } /* Literal.String.Regex */ .highlight .s1 { color: #87CEEB } /* Literal.String.Single */ .highlight .ss { color: #87CEEB } /* Literal.String.Symbol */ .highlight .bp { color: #DDD } /* Name.Builtin.Pseudo */ .highlight .fm { color: #FF0 } /* Name.Function.Magic */ .highlight .vc { color: #EEDD82 } /* Name.Variable.Class */ .highlight .vg { color: #EEDD82 } /* Name.Variable.Global */ .highlight .vi { color: #EEDD82 } /* Name.Variable.Instance */ .highlight .vm { color: #EEDD82 } /* Name.Variable.Magic */ .highlight .il { color: #F0F } /* Literal.Number.Integer.Long */
{ pkgs, ... }:

{
  programs = {
    git = {
      enable = true;
      userName = "Mel";
      userEmail = "einebeere@gmail.com";
      signing = { 
        key = "D75A C286 ACA7 00B4 D8EC 377D 2082 F8EC 11CC 009B";
        signByDefault = true;
      };
      extraConfig.init.defaultBranch = "main";
    };

    tmux = {
      enable = true;
      mouse = true;
      keyMode = "vi";
      plugins = with pkgs.tmuxPlugins; [
        yank fpp open fuzzback
      ];
    };

    fish = {
      enable = true;
      interactiveShellInit = ''
        set fish_greeting
      '';
    };

    zoxide = { enable = true; enableFishIntegration = true; };
    starship = { enable = true; enableFishIntegration = true; };
    direnv = { enable = true; };
  };

  home.sessionPath = [
    "$HOME/.local/share/JetBrains/Toolbox/scripts"
  ];
}