summaryrefslogtreecommitdiff
path: root/lua/plugins/plugins.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-12 21:22:47 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-12 21:22:47 +0100
commit7cf73775036c3424dd5e2a85effe3883cf0b0ca8 (patch)
tree61d7584b44d0c8074676bb2a1cfba00dc3a6babc /lua/plugins/plugins.lua
parentb42618906aad70a735ea9272403e5e2657230fcc (diff)
Refactor the file structure
Diffstat (limited to 'lua/plugins/plugins.lua')
-rw-r--r--lua/plugins/plugins.lua36
1 files changed, 0 insertions, 36 deletions
diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua
deleted file mode 100644
index 2998fb9..0000000
--- a/lua/plugins/plugins.lua
+++ /dev/null
@@ -1,36 +0,0 @@
--- Neovim plugins
-
-return {
- -- Base --
- { "wbthomason/packer.nvim" }, -- Have packer manage itself
- { "nvim-lua/popup.nvim" }, -- An implementation of the Popup API from vim in Neovim
- { "nvim-lua/plenary.nvim" }, -- Useful lua functions used ny lots of plugins
-
- -- Colorschemes --
- { "aktersnurra/no-clown-fiesta.nvim" }, -- My colorscheme
-
- -- cmp plugins --
- { "hrsh7th/nvim-cmp" }, -- The completion plugin
- { "hrsh7th/cmp-buffer" }, -- buffer completions
- { "hrsh7th/cmp-path" }, -- path completions
- { "hrsh7th/cmp-cmdline" }, -- cmdline completions
- { "saadparwaiz1/cmp_luasnip" }, -- snippet completions
-
- -- Snippets --
- { "L3MON4D3/LuaSnip" }, --snippet engine
- { "rafamadriz/friendly-snippets" }, -- a bunch of snippets to use
-
- -- LSP --
- { "neovim/nvim-lspconfig" }, -- enable LSP
- { "williamboman/nvim-lsp-installer" }, -- simple to use language server installer
-
- -- Telescope --
- { "nvim-telescope/telescope.nvim" },
-
- -- Treesitter --
- {
- "nvim-treesitter/nvim-treesitter",
- run = ":TSUpdate",
- },
-
-}