Add procs, tldr, and tokei

This commit is contained in:
Dave Gallant
2021-01-29 09:49:30 -05:00
parent 2682130ad7
commit 0410af1387
4 changed files with 21 additions and 8 deletions

View File

@@ -125,12 +125,14 @@
'';
shellAliases = {
ls = "exa -la --git";
".." = "cd ..";
grep = "grep --color=auto --line-buffered";
k = "kubectl";
aws-azure-login =
"docker run --rm -it -v ~/.aws:/root/.aws sportradar/aws-azure-login";
".." = "cd ..";
e = "emacs -nw";
grep = "grep --color=auto --line-buffered";
k = "kubectl";
ls = "exa -la --git";
ps = "procs";
};
"oh-my-zsh" = {
@@ -322,9 +324,9 @@
emacs = {
enable = true;
package = pkgs.emacs-nox;
extraPackages = epkgs:
(with epkgs; [
all-the-icons
centaur-tabs
doom-modeline
doom-themes
@@ -359,6 +361,7 @@
rust-mode
spinner
terraform-mode
treemacs
web-mode
xclip
]);

View File

@@ -33,6 +33,13 @@
(centaur-tabs-mode t)
(global-set-key (kbd "C-<prior>") 'centaur-tabs-backward)
(global-set-key (kbd "C-<next>") 'centaur-tabs-forward)
(setq centaur-tabs-style "bar"
centaur-tabs-height 32
centaur-tabs-set-icons t
centaur-tabs-set-modified-marker t
centaur-tabs-show-navigation-buttons t
centaur-tabs-set-bar 'under
x-underline-at-descent-line t)
;; Trailing white space
(setq-default show-trailing-whitespace t)