From 9d637e58c8e01dc0fbabb522d950afc99f1d6677 Mon Sep 17 00:00:00 2001 From: Andrzej Stepien Date: Tue, 12 Mar 2024 16:14:14 +0100 Subject: [PATCH] moved plugins to discrete files --- lua/plugins.lua | 73 ------------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 lua/plugins.lua diff --git a/lua/plugins.lua b/lua/plugins.lua deleted file mode 100644 index ec74aee..0000000 --- a/lua/plugins.lua +++ /dev/null @@ -1,73 +0,0 @@ -return { - {"nvim-treesitter/nvim-treesitter"}, - {'numToStr/Comment.nvim', - opts = { - -- add any options here - }, - lazy = false, - }, - {"rose-pine/neovim", name = "rose-pine"}, - { "ellisonleao/gruvbox.nvim", priority = 1000 , config = true, opts = ...}, - {"nvim-lualine/lualine.nvim", dependencies = { - "nvim-tree/nvim-web-devicons", - } - }, - {"folke/zen-mode.nvim", - opts = { - window = {width = 60}} - }, - {"folke/twilight.nvim", opts = {context = 1}}, - {"preservim/vim-pencil"}, - {"nvim-neo-tree/neo-tree.nvim", - branch = "v3.x", - dependencies = { - "nvim-lua/plenary.nvim", - "nvim-tree/nvim-web-devicons", -- not strictly required, but recommended - "MunifTanjim/nui.nvim", - -- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information - } - }, - {'akinsho/bufferline.nvim', version = "*", dependencies = 'nvim-tree/nvim-web-devicons'}, - {"folke/which-key.nvim", - event = "VeryLazy", - init = function() - vim.o.timeout = true - vim.o.timeoutlen = 300 - end, - opts = { - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below - } - }, - --################################################## - --## LANGUAGE SERVER CONFIGS - --################################################## - "williamboman/mason.nvim", - "williamboman/mason-lspconfig.nvim", - "neovim/nvim-lspconfig", - --################################################# - --## AUTOCOMPLETION/SNIPPETS - --################################################# - "hrsh7th/nvim-cmp", - "hrsh7th/cmp-nvim-lsp", - "hrsh7th/cmp-buffer", - "hrsh7th/cmp-path", - "hrsh7th/cmp-cmdline", - {"L3MON4D3/LuaSnip", - -- follow latest release. - version = "v2.*", -- Replace by the latest released major (first number of latest release) - -- install jsregexp (optional!). - build = "make install_jsregexp", - dependencies = { "rafamadriz/friendly-snippets" }, - }, - "saadparwaiz1/cmp_luasnip", - "rafamadriz/friendly-snippets", - ---##################################################################### - ---## LINTING - ---##################################################################### - "mfussenegger/nvim-lint", - "WhoIsSethDaniel/toggle-lsp-diagnostics.nvim" - -} -