From bc405d32d72b01e683e977da606c55068f929346 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Mon, 21 Oct 2024 19:02:59 -0500 Subject: [PATCH] update nvim, update ls command --- flake.lock | 25 +++++++++++++++++++++---- modules/shell/common.nix | 6 +++--- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index a7848d6..d4bb126 100644 --- a/flake.lock +++ b/flake.lock @@ -510,6 +510,22 @@ "type": "github" } }, + "nvim_plugin-aznhe21/actions-preview.nvim": { + "flake": false, + "locked": { + "lastModified": 1718540350, + "narHash": "sha256-lYjsv8y1fMuTGpBF/iG7cm/a7tLdh748vJhVsSp/Iz8=", + "owner": "aznhe21", + "repo": "actions-preview.nvim", + "rev": "9f52a01c374318e91337697ebed51c6fae57f8a4", + "type": "github" + }, + "original": { + "owner": "aznhe21", + "repo": "actions-preview.nvim", + "type": "github" + } + }, "nvim_plugin-b0o/schemastore.nvim": { "flake": false, "locked": { @@ -1285,6 +1301,7 @@ "nvim_plugin-MunifTanjim/nui.nvim": "nvim_plugin-MunifTanjim/nui.nvim", "nvim_plugin-RRethy/vim-illuminate": "nvim_plugin-RRethy/vim-illuminate", "nvim_plugin-Saecki/crates.nvim": "nvim_plugin-Saecki/crates.nvim", + "nvim_plugin-aznhe21/actions-preview.nvim": "nvim_plugin-aznhe21/actions-preview.nvim", "nvim_plugin-b0o/schemastore.nvim": "nvim_plugin-b0o/schemastore.nvim", "nvim_plugin-catppuccin/nvim": "nvim_plugin-catppuccin/nvim", "nvim_plugin-chrisgrieser/nvim-early-retirement": "nvim_plugin-chrisgrieser/nvim-early-retirement", @@ -1333,11 +1350,11 @@ "rust-overlay": "rust-overlay_3" }, "locked": { - "lastModified": 1729471758, - "narHash": "sha256-yK3PUHl8buO5lMphaeKTYQ/wPDaJ0+7OR0KM8extu14=", + "lastModified": 1729555214, + "narHash": "sha256-z58uNzWmrJw8UmDzsGR9BzCnKpr48FNoN4sqhLAUcfg=", "ref": "refs/heads/master", - "rev": "99f5ed48b816d174ba872846f0e70b79b2a74491", - "revCount": 216, + "rev": "215778e9c430d8fae9171719f80a3a6d63a59e55", + "revCount": 218, "type": "git", "url": "https://git.joshuabell.xyz/nvim" }, diff --git a/modules/shell/common.nix b/modules/shell/common.nix index 99e3663..8e9d9f4 100644 --- a/modules/shell/common.nix +++ b/modules/shell/common.nix @@ -64,9 +64,9 @@ in # general unix date_compact = "date +'%Y%m%d'"; date_short = "date +'%Y-%m-%d'"; - ls = "ls --color -Ga"; - ll = "ls --color -Gal"; - lss = "du --max-depth=0 -h * 2>/dev/null"; + ls = "ls --color -Gah"; + ll = "ls --color -Galh"; + lss = "du --max-depth=0 -h * 2>/dev/null | sort -hr"; psg = "ps aux | head -n 1 && ps aux | grep -v 'grep' | grep"; cl = "clear";