Compare commits

..

3 Commits

Author SHA1 Message Date
35ea810bd8 pairs in commands 2026-07-03 14:13:04 +02:00
379881887c less hjkl supression 2026-07-03 14:10:18 +02:00
ac6b9739a5 delete unused plugin 2026-07-03 14:08:13 +02:00
5 changed files with 4 additions and 34 deletions

View File

@@ -72,7 +72,7 @@ vim.api.nvim_create_autocmd("FileType", {
})
-- 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)
end, { desc = "hjkl supremacy" })

View File

@@ -7,7 +7,6 @@ require("romanzy.plugins.telescope")
require("romanzy.plugins.nvim-treesitter")
require("romanzy.plugins.conform")
require("romanzy.plugins.lsp")
-- require("romanzy.plugins.header42")
require("romanzy.plugins.codamheader")
-- custom "plugins"

View File

@@ -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,
})

View File

@@ -64,7 +64,9 @@ hipatterns.setup({
hex_color = hipatterns.gen_highlighter.hex_color(),
},
})
pairs.setup({})
pairs.setup({
modes = { insert = true, command = true, terminal = false },
})
ai.setup({})
notify.setup({
lsp_progress = {

View File

@@ -16,10 +16,6 @@
"rev": "619363c30309d29ffa631e67c8183f2a72caa373",
"src": "https://github.com/stevearc/conform.nvim"
},
"header42.nvim": {
"rev": "d41468df1c53081c909fc78248cf233893b59809",
"src": "https://codeberg.org/42nerds/header42.nvim"
},
"lazygit.nvim": {
"rev": "a04ad0dbc725134edbee3a5eea29290976695357",
"src": "https://github.com/kdheepak/lazygit.nvim"