summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/cole/plugins-setup.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/cole/plugins-setup.lua')
-rw-r--r--.config/nvim/lua/cole/plugins-setup.lua128
1 files changed, 128 insertions, 0 deletions
diff --git a/.config/nvim/lua/cole/plugins-setup.lua b/.config/nvim/lua/cole/plugins-setup.lua
new file mode 100644
index 0000000..69a4294
--- /dev/null
+++ b/.config/nvim/lua/cole/plugins-setup.lua
@@ -0,0 +1,128 @@
+-- auto install packer if not installed
+local ensure_packer = function()
+ local fn = vim.fn
+ local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
+ if fn.empty(fn.glob(install_path)) > 0 then
+ fn.system({ "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim", install_path })
+ vim.cmd([[packadd packer.nvim]])
+ return true
+ end
+ return false
+end
+local packer_bootstrap = ensure_packer() -- true if packer was just installed
+
+-- autocommand that reloads neovim and installs/updates/removes plugins
+-- when file is saved
+vim.cmd([[
+ augroup packer_user_config
+ autocmd!
+ autocmd BufWritePost plugins-setup.lua source <afile> | PackerSync
+ augroup end
+]])
+
+-- import packer safely
+local status, packer = pcall(require, "packer")
+if not status then
+ return
+end
+
+-- add list of plugins to install
+return packer.startup(function(use)
+ -- packer can manage itself
+ use("wbthomason/packer.nvim")
+
+ use("nvim-lua/plenary.nvim") -- lua functions that many plugins use
+
+ -- Color Scheme is here!!!
+ use("AlexvZyl/nordic.nvim") -- preferred colorscheme
+
+ use("christoomey/vim-tmux-navigator") -- tmux & split window navigation
+
+ use("szw/vim-maximizer") -- maximizes and restores current window
+
+ -- essential plugins
+ use("tpope/vim-surround") -- add, delete, change surroundings (it's awesome)
+ use("inkarkat/vim-ReplaceWithRegister") -- replace with register contents using motion (gr + motion)
+
+ -- commenting with gc
+ use("numToStr/Comment.nvim")
+
+ -- file explorer
+ use("nvim-tree/nvim-tree.lua")
+
+ -- vs-code like icons
+ use("nvim-tree/nvim-web-devicons")
+
+ -- statusline
+ use("nvim-lualine/lualine.nvim")
+
+ -- fuzzy finding w/ telescope
+ use({ "nvim-telescope/telescope-fzf-native.nvim", run = "make" }) -- dependency for better sorting performance
+ use({ "nvim-telescope/telescope.nvim", branch = "0.1.x" }) -- fuzzy finder
+
+ -- autocompletion
+ use("hrsh7th/nvim-cmp") -- completion plugin
+ use("hrsh7th/cmp-buffer") -- source for text in buffer
+ use("hrsh7th/cmp-path") -- source for file system paths
+
+ -- snippets
+ use("L3MON4D3/LuaSnip") -- snippet engine
+ use("saadparwaiz1/cmp_luasnip") -- for autocompletion
+ use("rafamadriz/friendly-snippets") -- useful snippets
+
+ -- managing & installing lsp servers, linters & formatters
+ use("williamboman/mason.nvim") -- in charge of managing lsp servers, linters & formatters
+ use("williamboman/mason-lspconfig.nvim") -- bridges gap b/w mason & lspconfig
+
+ -- configuring lsp servers
+ use("neovim/nvim-lspconfig") -- easily configure language servers
+ use("hrsh7th/cmp-nvim-lsp") -- for autocompletion
+ use({
+ "glepnir/lspsaga.nvim",
+ branch = "main",
+ requires = {
+ { "nvim-tree/nvim-web-devicons" },
+ { "nvim-treesitter/nvim-treesitter" },
+ },
+ }) -- enhanced lsp uis
+
+ -- vs-code like icons for autocompletion
+ use("onsails/lspkind.nvim")
+
+ -- treesitter configuration
+ use({
+ "nvim-treesitter/nvim-treesitter",
+ run = function()
+ local ts_update = require("nvim-treesitter.install").update({ with_sync = true })
+ ts_update()
+ end,
+ })
+
+ -- auto closing
+ use("windwp/nvim-autopairs") -- autoclose parens, brackets, quotes, etc...
+ use({ "windwp/nvim-ts-autotag", after = "nvim-treesitter" }) -- autoclose tags
+
+ -- git integration
+ use("lewis6991/gitsigns.nvim") -- show line modifications on left hand side
+
+ -- formatting & linting
+ use("jose-elias-alvarez/null-ls.nvim") -- configure formatters and linters
+ use("jayp0521/mason-null-ls.nvim") -- bridges gap b/w mason and null-ls
+
+ -- toggle terminal
+ use({
+ "akinsho/toggleterm.nvim",
+ tag = "*",
+ config = function()
+ require("toggleterm").setup({
+ size = 15,
+ direction = "horizontal",
+ autochdir = false,
+ })
+ end,
+ })
+
+ if packer_bootstrap then
+ require("packer").sync()
+ end
+end)