mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
* nvim: Add copilot completions * nvim: grug-far buffer won't show lualine & winbar now * nvim: remove obsidian.nvim * nvim: luasnip now works * emacs: more keymaps in org-mode * emacs: start customizing leader keys * shell: Add more ls aliases * shell: Add apt alias in fish
24 lines
560 B
Lua
24 lines
560 B
Lua
return {
|
|
{ import = "plugins.mod.nvim-cmp" },
|
|
{
|
|
"saadparwaiz1/cmp_luasnip"
|
|
},
|
|
{
|
|
"L3MON4D3/LuaSnip",
|
|
build = "make install_jsregexp",
|
|
config = function()
|
|
require("luasnip.loaders.from_vscode").load_standalone(
|
|
{
|
|
path = "~/.config/zed/snippets/c.json" }
|
|
)
|
|
end,
|
|
-- TODO: Remove this, simply delete this will let nvim-cmp not work
|
|
dependencies = { "rafamadriz/friendly-snippets" },
|
|
},
|
|
{
|
|
"zbirenbaum/copilot-cmp",
|
|
config = function()
|
|
require("copilot_cmp").setup()
|
|
end,
|
|
},
|
|
}
|