remove restic azure
This commit is contained in:
parent
0fc512c3c6
commit
e634f2a628
6 changed files with 40 additions and 48 deletions
|
@ -43,10 +43,6 @@ keymap.set("n", "<space>s", require("nvim-tree.api").tree.toggle, {
|
|||
-- shortcut to command mode
|
||||
keymap.set({ "n", "x" }, ";", ":", { silent = true })
|
||||
|
||||
keymap.set("n", [[\d]], "<cmd>close<cr>", {
|
||||
silent = true,
|
||||
})
|
||||
|
||||
keymap.set("n", "<space>o", "printf('m`%so<ESC>``', v:count1)", {
|
||||
expr = true,
|
||||
desc = "insert line below without moving cursor",
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
"dressing.nvim": { "branch": "master", "commit": "fc78a3ca96f4db9f8893bb7e2fd9823e0780451b" },
|
||||
"fzf-lua": { "branch": "main", "commit": "175ddbb9bbe28eef006516f38b126215de1fef57" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "5f808b5e4fef30bd8aca1b803b4e555da07fc412" },
|
||||
"hop.nvim": { "branch": "master", "commit": "08ddca799089ab96a6d1763db0b8adc5320bf050" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "56ead98e05bb37a4ec28930a54d836d033cf00f2" },
|
||||
"lualine.nvim": { "branch": "master", "commit": "2a5bae925481f999263d6f5ed8361baef8df4f83" },
|
||||
"nvim-autopairs": { "branch": "master", "commit": "b464658e9b880f463b9f7e6ccddd93fb0013f559" },
|
||||
|
|
16
nvim/lua/config/hop.lua
Normal file
16
nvim/lua/config/hop.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
local hop = require('hop')
|
||||
local keymap = vim.keymap
|
||||
|
||||
hop.setup {
|
||||
case_insensitive = true;
|
||||
char2_fallback_key = "<CR>",
|
||||
quit_key = "<Esc",
|
||||
}
|
||||
|
||||
keymap.set({ 'n', 'v', 'o' }, 'f', "", {
|
||||
silent = true;
|
||||
noremap = true;
|
||||
callback = function()
|
||||
hop.hint_char2()
|
||||
end,
|
||||
})
|
|
@ -83,6 +83,14 @@ local plugin_specs = {
|
|||
{ "nvim-lualine/lualine.nvim", dependencies = { "nvim-tree/nvim-web-devicons" } },
|
||||
|
||||
{ "github/copilot.vim", lazy = false },
|
||||
|
||||
{
|
||||
'smoka7/hop.nvim',
|
||||
version = "*",
|
||||
config = function()
|
||||
require("config.hop")
|
||||
end,
|
||||
}
|
||||
}
|
||||
|
||||
require("lazy").setup({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue