Compare commits
No commits in common. "b4d050a5f89ebd9e56c68a17368a43f0aae96a4f" and "70f5e46860136a5c8d8c8b9bdeeecb7763fec080" have entirely different histories.
b4d050a5f8
...
70f5e46860
|
@ -1,20 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, ... }:
|
||||||
let
|
let
|
||||||
cfg = config.my.home.firefox.tridactyl;
|
cfg = config.my.home.firefox.tridactyl;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
xdg.configFile."tridactyl/tridactylrc".source = pkgs.substituteAll {
|
xdg.configFile."tridactyl/tridactylrc".source = ./tridactylrc;
|
||||||
src = ./tridactylrc;
|
|
||||||
|
|
||||||
editorcmd = lib.concatStringsSep " " [
|
|
||||||
# Use my configured terminal
|
|
||||||
config.my.home.terminal.program
|
|
||||||
# Make it easy to pick out with a window class name
|
|
||||||
"--class tridactyl_editor"
|
|
||||||
# Open vim with the cursor in the correct position
|
|
||||||
''-e "vim %f '+normal!%lGzv%c|'"''
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
colorscheme dark
|
colorscheme dark
|
||||||
|
|
||||||
" Make tridactyl open Vim in my prefered terminal
|
" Make tridactyl open Vim in my prefered terminal
|
||||||
set editorcmd @editorcmd@
|
" FIXME: make it follow my prefered terminal
|
||||||
|
set editorcmd termite --class tridactyl_editor -e 'vim %f'
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
" Binds {{{
|
" Binds {{{
|
||||||
|
|
|
@ -22,5 +22,6 @@ in
|
||||||
file
|
file
|
||||||
mosh
|
mosh
|
||||||
ripgrep
|
ripgrep
|
||||||
|
termite.terminfo
|
||||||
] ++ cfg.additionalPackages);
|
] ++ cfg.additionalPackages);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
let
|
|
||||||
cfg = config.my.home.terminal;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
config = lib.mkIf (cfg.program == "alacritty") {
|
|
||||||
programs.alacritty = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
font = {
|
|
||||||
size = 5.5;
|
|
||||||
};
|
|
||||||
|
|
||||||
colors = {
|
|
||||||
primary = {
|
|
||||||
background = cfg.colors.background;
|
|
||||||
foreground = cfg.colors.foreground;
|
|
||||||
|
|
||||||
bright_foreground = cfg.colors.foregroundBold;
|
|
||||||
};
|
|
||||||
|
|
||||||
cursor = {
|
|
||||||
cursor = cfg.colors.cursor;
|
|
||||||
};
|
|
||||||
|
|
||||||
normal = {
|
|
||||||
black = cfg.colors.black;
|
|
||||||
red = cfg.colors.red;
|
|
||||||
green = cfg.colors.green;
|
|
||||||
yellow = cfg.colors.yellow;
|
|
||||||
blue = cfg.colors.blue;
|
|
||||||
magenta = cfg.colors.magenta;
|
|
||||||
cyan = cfg.colors.cyan;
|
|
||||||
white = cfg.colors.white;
|
|
||||||
};
|
|
||||||
|
|
||||||
bright = {
|
|
||||||
black = cfg.colors.blackBold;
|
|
||||||
red = cfg.colors.redBold;
|
|
||||||
green = cfg.colors.greenBold;
|
|
||||||
yellow = cfg.colors.yellowBold;
|
|
||||||
blue = cfg.colors.blueBold;
|
|
||||||
magenta = cfg.colors.magentaBold;
|
|
||||||
cyan = cfg.colors.cyanBold;
|
|
||||||
white = cfg.colors.whiteBold;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -10,14 +10,13 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./alacritty
|
|
||||||
./termite
|
./termite
|
||||||
];
|
];
|
||||||
|
|
||||||
options.my.home = with lib; {
|
options.my.home = with lib; {
|
||||||
terminal = {
|
terminal = {
|
||||||
program = mkOption {
|
program = mkOption {
|
||||||
type = with types; nullOr (enum [ "alacritty" "termite" ]);
|
type = with types; nullOr (enum [ "termite" ]);
|
||||||
default = null;
|
default = null;
|
||||||
example = "termite";
|
example = "termite";
|
||||||
description = "Which terminal to use for home session";
|
description = "Which terminal to use for home session";
|
||||||
|
|
|
@ -84,8 +84,11 @@ in
|
||||||
reset-agent = "gpg-connect-agent updatestartuptty /bye";
|
reset-agent = "gpg-connect-agent updatestartuptty /bye";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable VTE integration
|
# Enable VTE integration when using one of the affected shells
|
||||||
enableVteIntegration = true;
|
enableVteIntegration =
|
||||||
|
builtins.any (name: config.my.home.terminal.program == name) [
|
||||||
|
"termite"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Fuzzy-wuzzy
|
# Fuzzy-wuzzy
|
||||||
|
|
|
@ -23,8 +23,8 @@
|
||||||
mpv.enable = true;
|
mpv.enable = true;
|
||||||
# Network-Manager applet
|
# Network-Manager applet
|
||||||
nm-applet.enable = true;
|
nm-applet.enable = true;
|
||||||
# Terminal
|
# Termite terminal
|
||||||
terminal.program = "alacritty";
|
terminal.program = "termite";
|
||||||
# Zathura document viewer
|
# Zathura document viewer
|
||||||
zathura.enable = true;
|
zathura.enable = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue