Compare commits

..

No commits in common. "be1df0d8267c9fb22ae68609b0ecc01d261a91ca" and "be51332969410ba84cf6252633d9cc2aef85be04" have entirely different histories.

3 changed files with 6 additions and 8 deletions

View file

@ -644,11 +644,11 @@
"nixvim": "nixvim" "nixvim": "nixvim"
}, },
"locked": { "locked": {
"lastModified": 1723012155, "lastModified": 1722819423,
"narHash": "sha256-7AlUEGsbIOCQmIRc+lH/k2CJ32pdEkFszyMekTOVoJc=", "narHash": "sha256-Xa7g/XYxgYQ7I+S3dTya9mZtllJOs08/oWPceQASG54=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "e3dc3f07d69bcb0c9df5875aefd7dbf3877be794", "rev": "984254a9c552eb0080a0d58cfb0e9839124ddfb3",
"revCount": 14, "revCount": 4,
"type": "git", "type": "git",
"url": "https://git.sajenim.dev/jasmine/nvim.nix.git" "url": "https://git.sajenim.dev/jasmine/nvim.nix.git"
}, },

View file

@ -89,7 +89,7 @@ config.colors = {
config.disable_default_key_bindings = true config.disable_default_key_bindings = true
config.keys = { config.keys = {
--| Spawn Tab --| Spawn Tab
{ key = 'n', mods = 'ALT', action = act.SpawnTab 'CurrentPaneDomain', }, { key = 't', mods = 'ALT', action = act.SpawnTab 'CurrentPaneDomain', },
--| Tab Navigation --| Tab Navigation
{ key = 'LeftArrow', mods = 'ALT', action = act.ActivateTabRelative(-1) }, { key = 'LeftArrow', mods = 'ALT', action = act.ActivateTabRelative(-1) },
{ key = 'RightArrow', mods = 'ALT', action = act.ActivateTabRelative(1) }, { key = 'RightArrow', mods = 'ALT', action = act.ActivateTabRelative(1) },
@ -104,7 +104,7 @@ config.keys = {
{ key = 'DownArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Next', }, { key = 'DownArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Next', },
{ key = 'UpArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Prev', }, { key = 'UpArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Prev', },
--| Close Pane --| Close Pane
{ key = 'Escape', mods = "ALT", action = act.CloseCurrentPane { confirm = false }, }, { key = 'w', mods = "ALT|CTRL", action = act.CloseCurrentPane { confirm = false }, },
--| Copy Mode / Clipboard --| Copy Mode / Clipboard
{ key = 'X', mods = 'CTRL', action = act.ActivateCopyMode, }, { key = 'X', mods = 'CTRL', action = act.ActivateCopyMode, },

View file

@ -19,8 +19,6 @@
jq # JSON processor jq # JSON processor
git # version control git # version control
nmap # network mapper nmap # network mapper
xclip # clipboard
ripgrep # searches the current directory for a regex pattern
# HTTP # HTTP
curl # transfer dato to/from server curl # transfer dato to/from server