diff --git a/lua/custom/plugins/ferris.lua b/lua/custom/plugins/ferris.lua index a187d346..9a324e6a 100644 --- a/lua/custom/plugins/ferris.lua +++ b/lua/custom/plugins/ferris.lua @@ -1,10 +1,10 @@ return { - 'vxpm/ferris.nvim', - opts = { - -- your options here - -- If true, will automatically create commands for each LSP method - create_commands = true, -- bool - -- Handler for URL's (used for opening documentation) - url_handler = "xdg-open", -- string | function(string) - } + 'vxpm/ferris.nvim', + opts = { + -- your options here + -- if true, will automatically create commands for each lsp method + create_commands = true, -- bool + -- handler for url's (used for opening documentation) + url_handler = "xdg-open", -- string | function(string) + } } diff --git a/lua/custom/plugins/nvim-web-devicons.lua b/lua/custom/plugins/nvim-web-devicons.lua new file mode 100644 index 00000000..1d82f213 --- /dev/null +++ b/lua/custom/plugins/nvim-web-devicons.lua @@ -0,0 +1,3 @@ +return { + 'nvim-tree/nvim-web-devicons', +} diff --git a/lua/custom/plugins/ollama-chat.lua b/lua/custom/plugins/ollama-chat.lua new file mode 100644 index 00000000..f6b96bca --- /dev/null +++ b/lua/custom/plugins/ollama-chat.lua @@ -0,0 +1,8 @@ +return { + "gerazov/ollama-chat.nvim", + dependencies = { + "nvim-lua/plenary.nvim", + "stevearc/dressing.nvim", + "nvim-telescope/telescope.nvim", + }, +}