Compare commits

...

3 commits

Author SHA1 Message Date
♥ Minnie ♥ be1df0d826
Update keybinds 2024-08-07 20:59:24 +08:00
♥ Minnie ♥ 6081d1c293
Install some tools 2024-08-07 20:58:06 +08:00
♥ Minnie ♥ ada68288d4
Update nixvim 2024-08-07 20:56:51 +08:00
3 changed files with 8 additions and 6 deletions

View file

@ -644,11 +644,11 @@
"nixvim": "nixvim" "nixvim": "nixvim"
}, },
"locked": { "locked": {
"lastModified": 1722819423, "lastModified": 1723012155,
"narHash": "sha256-Xa7g/XYxgYQ7I+S3dTya9mZtllJOs08/oWPceQASG54=", "narHash": "sha256-7AlUEGsbIOCQmIRc+lH/k2CJ32pdEkFszyMekTOVoJc=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "984254a9c552eb0080a0d58cfb0e9839124ddfb3", "rev": "e3dc3f07d69bcb0c9df5875aefd7dbf3877be794",
"revCount": 4, "revCount": 14,
"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 = 't', mods = 'ALT', action = act.SpawnTab 'CurrentPaneDomain', }, { key = 'n', 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 = 'w', mods = "ALT|CTRL", action = act.CloseCurrentPane { confirm = false }, }, { key = 'Escape', mods = "ALT", 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,6 +19,8 @@
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