mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
* Local leader to <C-k> * Add org mappings to match emacs behaviour * Put lang specific config to plugins/mod/lang, currently markdown and org
45 lines
1,005 B
Lua
45 lines
1,005 B
Lua
return {
|
|
{ "wakatime/vim-wakatime", lazy = false },
|
|
{ import = "plugins.mod.toggleterm" },
|
|
{
|
|
"CRAG666/code_runner.nvim",
|
|
config = true,
|
|
keys = {
|
|
{ "<leader>cr", "<cmd>RunCode<CR>", desc = "Run code" },
|
|
},
|
|
dependencies = {
|
|
|
|
{
|
|
"CRAG666/betterTerm.nvim",
|
|
opts = {
|
|
position = "bot",
|
|
size = 15,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{ import = "plugins.mod.which-keys-nvim" },
|
|
{ import = "plugins.mod.copilot-lua" },
|
|
{ import = "plugins.mod.avante-nvim" },
|
|
{
|
|
"kawre/leetcode.nvim",
|
|
build = ":TSUpdate html", -- if you have `nvim-treesitter` installed
|
|
cmd = {
|
|
"Leet",
|
|
},
|
|
event = "VeryLazy",
|
|
dependencies = {
|
|
"nvim-telescope/telescope.nvim",
|
|
-- "ibhagwan/fzf-lua",
|
|
"nvim-lua/plenary.nvim",
|
|
"MunifTanjim/nui.nvim",
|
|
},
|
|
opts = {
|
|
-- configuration goes here
|
|
},
|
|
},
|
|
{ import = "plugins.mod.image-nvim" },
|
|
-- "3rd/image.nvim",
|
|
-- opts = {},
|
|
-- },
|
|
}
|