mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-25 09:28:27 +02:00
feat: morden cli tools
This commit is contained in:
@@ -31,8 +31,6 @@
|
|||||||
|
|
||||||
# misc
|
# misc
|
||||||
pkgs-unstable.devbox
|
pkgs-unstable.devbox
|
||||||
glow # markdown previewer
|
|
||||||
gdu # disk usage analyzer, required by AstroNvim
|
|
||||||
bfg-repo-cleaner # remove large files from git history
|
bfg-repo-cleaner # remove large files from git history
|
||||||
k6 # load testing tool
|
k6 # load testing tool
|
||||||
protobuf # protocol buffer compiler
|
protobuf # protocol buffer compiler
|
||||||
|
|||||||
@@ -122,6 +122,7 @@
|
|||||||
glow # markdown previewer
|
glow # markdown previewer
|
||||||
fzf
|
fzf
|
||||||
pandoc # document converter
|
pandoc # document converter
|
||||||
|
hugo # static site generator
|
||||||
|
|
||||||
#-- Optional Requirements:
|
#-- Optional Requirements:
|
||||||
gdu # disk usage analyzer, required by AstroNvim
|
gdu # disk usage analyzer, required by AstroNvim
|
||||||
|
|||||||
@@ -67,6 +67,7 @@
|
|||||||
duf # Disk Usage/Free Utility - a better 'df' alternative
|
duf # Disk Usage/Free Utility - a better 'df' alternative
|
||||||
du-dust # A more intuitive version of `du` in rust
|
du-dust # A more intuitive version of `du` in rust
|
||||||
ncdu # analyzer your disk usage Interactively, via TUI(replacement of `du`)
|
ncdu # analyzer your disk usage Interactively, via TUI(replacement of `du`)
|
||||||
|
gdu # disk usage analyzer(replacement of `du`)
|
||||||
|
|
||||||
# nix related
|
# nix related
|
||||||
#
|
#
|
||||||
@@ -76,8 +77,6 @@
|
|||||||
|
|
||||||
# productivity
|
# productivity
|
||||||
caddy
|
caddy
|
||||||
hugo # static site generator
|
|
||||||
glow # markdown previewer in terminal
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
@@ -128,8 +127,8 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# zoxide is a smarter cd command, inspired by z and autojump.
|
# zoxide is a smarter cd command, inspired by z and autojump.
|
||||||
# It remembers which directories you use most frequently,
|
# It remembers which directories you use most frequently,
|
||||||
# so you can "jump" to them in just a few keystrokes.
|
# so you can "jump" to them in just a few keystrokes.
|
||||||
# zoxide works on all major shells.
|
# zoxide works on all major shells.
|
||||||
#
|
#
|
||||||
# z foo # cd into highest ranked directory matching foo
|
# z foo # cd into highest ranked directory matching foo
|
||||||
@@ -140,10 +139,10 @@
|
|||||||
# z foo/ # cd into relative path
|
# z foo/ # cd into relative path
|
||||||
# z .. # cd one level up
|
# z .. # cd one level up
|
||||||
# z - # cd into previous directory
|
# z - # cd into previous directory
|
||||||
#
|
#
|
||||||
# zi foo # cd with interactive selection (using fzf)
|
# zi foo # cd with interactive selection (using fzf)
|
||||||
#
|
#
|
||||||
# z foo<SPACE><TAB> # show interactive completions (zoxide v0.8.0+, bash 4.4+/fish/zsh only)
|
# z foo<SPACE><TAB> # show interactive completions (zoxide v0.8.0+, bash 4.4+/fish/zsh only)
|
||||||
zoxide = {
|
zoxide = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
@@ -151,9 +150,9 @@
|
|||||||
enableNushellIntegration = true;
|
enableNushellIntegration = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Atuin replaces your existing shell history with a SQLite database,
|
# Atuin replaces your existing shell history with a SQLite database,
|
||||||
# and records additional context for your commands.
|
# and records additional context for your commands.
|
||||||
# Additionally, it provides optional and fully encrypted
|
# Additionally, it provides optional and fully encrypted
|
||||||
# synchronisation of your history between machines, via an Atuin server.
|
# synchronisation of your history between machines, via an Atuin server.
|
||||||
atuin = {
|
atuin = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user