AutoYADM commit: 2025-02-07 01:00:03

This commit is contained in:
Daniel Fichtinger 2025-02-07 01:00:03 -05:00
parent 4694e86003
commit 0b1de4ba43
3 changed files with 6 additions and 6 deletions

View file

@ -25,3 +25,8 @@ require("config.lazy")
-- } -- }
-- require("neovide-config").setup(nv_opts) -- require("neovide-config").setup(nv_opts)
-- end -- end
vim.api.nvim_create_autocmd("BufEnter", {
callback = function()
require("colemak").init()
end,
})

View file

@ -12,10 +12,6 @@ M.map = {
} }
M.modes = { M.modes = {
-- "n",
-- "x",
-- "v",
-- "o",
"n", "n",
"v", "v",
"x", "x",
@ -58,7 +54,7 @@ M.init = function()
set(l, r) set(l, r)
end end
end end
vim.keymap.set("n", "n", "j") -- vim.keymap.set("n", "n", "j")
return out return out
end end

View file

@ -18,7 +18,6 @@ vim.keymap.set("n", "<leader>m", "<CMD>echo hi<cr>")
-- vim.keymap.set("n", "<C-S-M>", function() -- vim.keymap.set("n", "<C-S-M>", function()
-- vim.notify("presed") -- vim.notify("presed")
-- end) -- end)
require("colemak").init()
vim.g.lazyvim_python_lsp = "basedpyright" vim.g.lazyvim_python_lsp = "basedpyright"
-- vim.g.lazyvim_rust_diagnostics = "bacon-ls" -- vim.g.lazyvim_rust_diagnostics = "bacon-ls"
vim.g.ai_cmp = false vim.g.ai_cmp = false