diff --git a/lua/plugins/conform.lua b/lua/plugins/conform.lua new file mode 100644 index 0000000..5419cd3 --- /dev/null +++ b/lua/plugins/conform.lua @@ -0,0 +1,6 @@ +return { + { + "stevearc/conform.nvim", + opts = require "configs.conform", + } +} diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua deleted file mode 100644 index d028655..0000000 --- a/lua/plugins/init.lua +++ /dev/null @@ -1,28 +0,0 @@ -return { - { - "stevearc/conform.nvim", - -- event = 'BufWritePre', -- uncomment for format on save - opts = require "configs.conform", - }, - - -- These are some examples, uncomment them if you want to see them work! - { - "neovim/nvim-lspconfig", - config = function() - require "configs.lspconfig" - end, - }, - - -- test new blink - -- { import = "nvchad.blink.lazyspec" }, - - -- { - -- "nvim-treesitter/nvim-treesitter", - -- opts = { - -- ensure_installed = { - -- "vim", "lua", "vimdoc", - -- "html", "css" - -- }, - -- }, - -- }, -} diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua new file mode 100644 index 0000000..2073196 --- /dev/null +++ b/lua/plugins/lsp.lua @@ -0,0 +1,8 @@ +return { + { + "neovim/nvim-lspconfig", + config = function() + require "configs.lspconfig" + end, + } +} diff --git a/lua/plugins/markdown.lua b/lua/plugins/markdown.lua new file mode 100644 index 0000000..ad22932 --- /dev/null +++ b/lua/plugins/markdown.lua @@ -0,0 +1,5 @@ +return { + { + "iamcco/markdown-preview.nvim" + } +}