aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins/init.lua')
-rw-r--r--nvim/lua/plugins/init.lua50
1 files changed, 0 insertions, 50 deletions
diff --git a/nvim/lua/plugins/init.lua b/nvim/lua/plugins/init.lua
deleted file mode 100644
index 7ed8f4b..0000000
--- a/nvim/lua/plugins/init.lua
+++ /dev/null
@@ -1,50 +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,
- },
-
- {
- "mbbill/undotree",
- event = "BufReadPost",
- config = function()
- vim.keymap.set("n", "<leader>u", vim.cmd.UndotreeToggle, { desc = "Toggle UndoTree" })
- end,
- },
-
- -- test new blink
- -- { import = "nvchad.blink.lazyspec" },
-
- {
- "nvim-treesitter/nvim-treesitter",
- opts = {
- ensure_installed = {
- "vim", "lua", "vimdoc",
- "html", "css", "elixir", "rust"
- },
- },
- },
-
- {
- "christoomey/vim-tmux-navigator",
- lazy = false,
- },
-
- {
- "nvim-tree/nvim-tree.lua",
- opts = {
- view = {
- side = "left"
- }
- }
- },
-}