feat: added cheat
parent
ed115a7522
commit
22efec27cb
|
@ -0,0 +1,29 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home = {
|
||||||
|
packages = [ pkgs.cheat ];
|
||||||
|
file.".config/cheat/conf.yml".text = pkgs.lib.generators.toYAML { } {
|
||||||
|
|
||||||
|
# The editor to use with 'cheat -e <sheet>'. Defaults to $EDITOR or $VISUAL.
|
||||||
|
editor = "${pkgs.neovim}/bin/nvim";
|
||||||
|
|
||||||
|
colorize = true;
|
||||||
|
|
||||||
|
# chroma formatter, options are available here:
|
||||||
|
# https://github.com/alecthomas/chroma/tree/master/styles
|
||||||
|
style = "monokai";
|
||||||
|
|
||||||
|
# one of: "terminal", "terminal256", "terminal16m"
|
||||||
|
formatter = "terminal16m";
|
||||||
|
|
||||||
|
cheatpaths = [{
|
||||||
|
name = "personal";
|
||||||
|
path = "${config.home.homeDirectory}/configs/cheatsheets";
|
||||||
|
tags = [ "personal" ];
|
||||||
|
readonly = false;
|
||||||
|
}];
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./alacritty/macos.nix
|
./alacritty/macos.nix
|
||||||
|
./cheat
|
||||||
./dav/macos.nix
|
./dav/macos.nix
|
||||||
./gcloud
|
./gcloud
|
||||||
./git/echidna.nix
|
./git/echidna.nix
|
||||||
|
|
|
@ -19,6 +19,7 @@ in {
|
||||||
./arduino
|
./arduino
|
||||||
./barrier
|
./barrier
|
||||||
./browsers
|
./browsers
|
||||||
|
./cheat
|
||||||
./dav
|
./dav
|
||||||
./fonts
|
./fonts
|
||||||
./git
|
./git
|
||||||
|
|
Loading…
Reference in New Issue