dms shell
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
require("liamm.core.binds")
|
||||
require("liamm.core.keymap")
|
||||
require("liamm.core.options")
|
||||
|
||||
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
|
||||
pattern = "*.h",
|
||||
callback = function()
|
||||
vim.bo.filetype = "c"
|
||||
end,
|
||||
})
|
||||
|
||||
@@ -67,3 +67,4 @@ end
|
||||
|
||||
-- Fix markdown indentation settings
|
||||
vim.g.markdown_recommended_style = 0
|
||||
|
||||
|
||||
@@ -84,5 +84,13 @@ return {
|
||||
automatic_enable = false,
|
||||
})
|
||||
end,
|
||||
}
|
||||
},
|
||||
|
||||
-- cats
|
||||
-- {
|
||||
-- "Panda-d3v/cute-cat.nvim",
|
||||
-- opts = {
|
||||
-- status = false,
|
||||
-- },
|
||||
-- }
|
||||
}
|
||||
|
||||
@@ -1,25 +1,4 @@
|
||||
local map = require("liamm.core.keymap").nnoremap
|
||||
-- return {
|
||||
-- "theprimeagen/harpoon",
|
||||
-- branch = "harpoon2",
|
||||
-- dependencies = {
|
||||
-- "nvim-lua/plenary.nvim",
|
||||
-- },
|
||||
-- lazy = false,
|
||||
-- config = function()
|
||||
-- local harpoon = require("harpoon")
|
||||
--
|
||||
-- ---@diagnostic disable-next-line: missing-parameter
|
||||
-- harpoon:setup()
|
||||
-- map("<leader>a", function() harpoon:list():append() end)
|
||||
-- map("<leader>h", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)
|
||||
-- map("<c-h>", function() harpoon:list():select(1) end)
|
||||
-- map("<c-h>", function() harpoon:list():select(2) end)
|
||||
-- map("<c-h>", function() harpoon:list():select(3) end)
|
||||
-- map("<c-h>", function() harpoon:list():select(4) end)
|
||||
-- end,
|
||||
-- }
|
||||
|
||||
return {
|
||||
"ThePrimeagen/harpoon",
|
||||
branch = "harpoon2",
|
||||
|
||||
Reference in New Issue
Block a user