Compare commits
No commits in common. "fc8bb4c1d361388de5bac1de8ad871c12db646b3" and "b8d7024b934409ddbf55ad985094d0db04baccf2" have entirely different histories.
fc8bb4c1d3
...
b8d7024b93
|
@ -280,8 +280,7 @@ end, { desc = '[F]ind [D]iagnostics' })
|
||||||
|
|
||||||
-- ZK remap stuffs
|
-- ZK remap stuffs
|
||||||
remap('n', '<leader>zf', function()
|
remap('n', '<leader>zf', function()
|
||||||
-- vim.cmd([[:ZkNotes]])
|
vim.cmd([[:ZkNotes]])
|
||||||
require('zk').edit({}, {multi_select = false})
|
|
||||||
end, { desc = '[Z]ettelkasten [F]iles' })
|
end, { desc = '[Z]ettelkasten [F]iles' })
|
||||||
|
|
||||||
remap('n', '<leader>zg', function()
|
remap('n', '<leader>zg', function()
|
||||||
|
@ -389,7 +388,7 @@ harpoon_nav('8', 8)
|
||||||
harpoon_nav('9', 9)
|
harpoon_nav('9', 9)
|
||||||
harpoon_nav('0', 10)
|
harpoon_nav('0', 10)
|
||||||
|
|
||||||
-- neogit: easy-to-see git status. Provides only productivity on staging/unstage
|
-- neogit: easy-to-see git status
|
||||||
require('neogit').setup {}
|
require('neogit').setup {}
|
||||||
remap('n', '<leader>gs', function() require('neogit').open({}) end);
|
remap('n', '<leader>gs', function() require('neogit').open({}) end);
|
||||||
|
|
||||||
|
@ -891,7 +890,7 @@ require('zk.commands').add("ZkGrep", function(match_ctor)
|
||||||
elseif type(match_ctor) == 'string' then
|
elseif type(match_ctor) == 'string' then
|
||||||
match = { match = grep_str }
|
match = { match = grep_str }
|
||||||
end
|
end
|
||||||
require('zk').edit(match, { title = "Grep: '" .. grep_str .. "'", mutli_select = false})
|
require('zk').edit(match, { title = "Grep: '" .. grep_str .. "'" })
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,8 @@ in
|
||||||
pkgs.htop
|
pkgs.htop
|
||||||
pkgs.ripgrep
|
pkgs.ripgrep
|
||||||
pkgs.unzip
|
pkgs.unzip
|
||||||
pkgs.zip
|
# pkgs.nodejs-18_x
|
||||||
|
|
||||||
|
|
||||||
# cool utilities
|
# cool utilities
|
||||||
pkgs.yq # Yaml adaptor for jq (only pretty print, little query)
|
pkgs.yq # Yaml adaptor for jq (only pretty print, little query)
|
||||||
|
|
Loading…
Reference in New Issue