diff options
| author | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
|---|---|---|
| committer | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
| commit | 2108c50f64057f44369576ecf7f6a1aa8a3efb4b (patch) | |
| tree | 6e2b423615a5241b151b80752902c4509cebda46 /.config/nvim/lua/plugins.lua | |
| parent | 7303b4e6ddf6ff95e3b082e7c292b87a701399ae (diff) | |
Plugin stuff all in one dir
Diffstat (limited to '.config/nvim/lua/plugins.lua')
| -rw-r--r-- | .config/nvim/lua/plugins.lua | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua deleted file mode 100644 index f409c9c..0000000 --- a/.config/nvim/lua/plugins.lua +++ /dev/null @@ -1,71 +0,0 @@ - -return require("packer").startup(function(use) - use 'wbthomason/packer.nvim' - - use { "ThePrimeagen/vim-be-good" } - - use { - "kyazdani42/nvim-tree.lua", - requires = "kyazdani42/nvim-web-devicons" - } - - use { - "nvim-telescope/telescope.nvim", - requires = { { "nvim-lua/plenary.nvim" } } - } - - use { "majutsushi/tagbar" } - use { "Yggdroot/indentLine" } - use { "windwp/nvim-autopairs" } - use { "airblade/vim-gitgutter" } - - use { "weedatom/presence.nvim" } - use { "mhinz/vim-startify" } - use { "DanilaMihailov/beacon.nvim" } - use { - "nvim-lualine/lualine.nvim", - requires = { "kyazdani42/nvim-web-devicons", opt = true } - } - use { "numToStr/Comment.nvim" } - use { "folke/zen-mode.nvim" } - - use { - 'VonHeikemen/lsp-zero.nvim', - requires = { - -- LSP Support - {'neovim/nvim-lspconfig'}, - {'williamboman/mason.nvim'}, - {'williamboman/mason-lspconfig.nvim'}, - - -- Autocompletion - {'hrsh7th/nvim-cmp'}, - {'hrsh7th/cmp-buffer'}, - {'hrsh7th/cmp-path'}, - {'saadparwaiz1/cmp_luasnip'}, - {'hrsh7th/cmp-nvim-lsp'}, - {'hrsh7th/cmp-nvim-lua'}, - - -- Snippets - {'L3MON4D3/LuaSnip'}, - {'rafamadriz/friendly-snippets'}, - } - } - - use { - "loctvl842/monokai-pro.nvim", - config = function() - vim.cmd("colorscheme monokai-pro") - end - } - use { - "catppuccin/nvim", - as = "catppuccin", - } - - use { - "nvim-treesitter/nvim-treesitter", - run = ":TSUpdate" - } - use("nvim-treesitter/playground") -end) - |
