Compare commits
3 Commits
199c37fe89
...
35ea810bd8
| Author | SHA1 | Date | |
|---|---|---|---|
| 35ea810bd8 | |||
| 379881887c | |||
| ac6b9739a5 |
@@ -72,7 +72,7 @@ vim.api.nvim_create_autocmd("FileType", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
-- hjkl supremacy
|
-- hjkl supremacy
|
||||||
map({ "n", "i", "v", "x", "s", "o", "c" }, { "<left>", "<right>", "<up>", "<down>" }, function()
|
map({ "n", "v", "i" }, { "<left>", "<right>", "<up>", "<down>" }, function()
|
||||||
vim.notify('hjkl supremacy', vim.log.levels.ERROR)
|
vim.notify('hjkl supremacy', vim.log.levels.ERROR)
|
||||||
end, { desc = "hjkl supremacy" })
|
end, { desc = "hjkl supremacy" })
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ require("romanzy.plugins.telescope")
|
|||||||
require("romanzy.plugins.nvim-treesitter")
|
require("romanzy.plugins.nvim-treesitter")
|
||||||
require("romanzy.plugins.conform")
|
require("romanzy.plugins.conform")
|
||||||
require("romanzy.plugins.lsp")
|
require("romanzy.plugins.lsp")
|
||||||
-- require("romanzy.plugins.header42")
|
|
||||||
require("romanzy.plugins.codamheader")
|
require("romanzy.plugins.codamheader")
|
||||||
|
|
||||||
-- custom "plugins"
|
-- custom "plugins"
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
vim.pack.add({
|
|
||||||
{ src = "https://codeberg.org/42nerds/header42.nvim" },
|
|
||||||
})
|
|
||||||
|
|
||||||
local function load_header42()
|
|
||||||
-- Prevent double loading
|
|
||||||
if _G.header42_loaded then return end
|
|
||||||
_G.header42_loaded = true
|
|
||||||
|
|
||||||
-- Configure the plugin
|
|
||||||
require("header42").setup({
|
|
||||||
-- autocmd = { create = false },
|
|
||||||
username = "rvolovoy",
|
|
||||||
email = "rvolovoy@student.codam.nl",
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
-- load it right away
|
|
||||||
-- load_header42();
|
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
|
||||||
pattern = { "c", "cpp", "python" },
|
|
||||||
once = true,
|
|
||||||
callback = function()
|
|
||||||
load_header42()
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
@@ -64,7 +64,9 @@ hipatterns.setup({
|
|||||||
hex_color = hipatterns.gen_highlighter.hex_color(),
|
hex_color = hipatterns.gen_highlighter.hex_color(),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
pairs.setup({})
|
pairs.setup({
|
||||||
|
modes = { insert = true, command = true, terminal = false },
|
||||||
|
})
|
||||||
ai.setup({})
|
ai.setup({})
|
||||||
notify.setup({
|
notify.setup({
|
||||||
lsp_progress = {
|
lsp_progress = {
|
||||||
|
|||||||
@@ -16,10 +16,6 @@
|
|||||||
"rev": "619363c30309d29ffa631e67c8183f2a72caa373",
|
"rev": "619363c30309d29ffa631e67c8183f2a72caa373",
|
||||||
"src": "https://github.com/stevearc/conform.nvim"
|
"src": "https://github.com/stevearc/conform.nvim"
|
||||||
},
|
},
|
||||||
"header42.nvim": {
|
|
||||||
"rev": "d41468df1c53081c909fc78248cf233893b59809",
|
|
||||||
"src": "https://codeberg.org/42nerds/header42.nvim"
|
|
||||||
},
|
|
||||||
"lazygit.nvim": {
|
"lazygit.nvim": {
|
||||||
"rev": "a04ad0dbc725134edbee3a5eea29290976695357",
|
"rev": "a04ad0dbc725134edbee3a5eea29290976695357",
|
||||||
"src": "https://github.com/kdheepak/lazygit.nvim"
|
"src": "https://github.com/kdheepak/lazygit.nvim"
|
||||||
|
|||||||
Reference in New Issue
Block a user