From 2a21f9a7857fed4f9755f7ba33221e623d200b39 Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Tue, 7 Jun 2022 04:25:50 -0400 Subject: [PATCH] Added a bunch of visual plugins: A bunch of these were from my originial .vimrc, that eventually became part of my init.vim inside of Neo-vim. Plugins include: ~ vim-airline Added for a better looking status bar. If I can just get the color-scheme switched to gruvbox, Airline follows along. ~ vim-startify My favorite vim dashboard app. I will need to Add bookmards manually to my code-patches(locations), but damn if that ascii-cow hasn't inspired me!!! ~ vim-indentline Added so I could better view how code lines up. This plugin will have to add a configuration variable to be setup with multi-tiered indention. ~ awesome-vim-color-schemes Cool color schemes, which has gruvbox(my-prefered); but does not have code-dark(B) or bad-wolf(FCG). ~ Developer icons for showing better status-lines, and file-manager file icons, based on project/language. ~ Also added the surround tpope plugin for working with tags and code-boundaries. I know it's not overtly visual, but is when you get started using it. --- lua/user/plugins.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index 3d4499f..b7fd3f4 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -44,6 +44,12 @@ return packer.startup(function(use) use "wbthomason/packer.nvim" -- Have packer manage itself use "nvim-lua/popup.nvim" -- An implementation of the Popup API from vim in Neovim use "nvim-lua/plenary.nvim" -- Useful lua functions used ny lots of plugins + use "vim-airline/vim-airline" -- Plugin to give a much blingier neo-vim status-line, with themes available for GruvBox/CodeDark. + use "mhinz/vim-startify" -- Neo-vim customizable Neo-vim start-page, w/ bookmarks/ascii cow programming humor each launch/re-load. + use "yggdroot/indentline" -- A great fct. to visualize layers of column/vertical alignment groups of code. + use "rafi/awesome-vim-colorschemes" -- Various vim-colour schemes. + use "ryanoasis/vim-devicons" -- Developer icons for Neo-vim plugins like file-managers... + use "tpope/vim-surround" -- great tag/code-encapsulator plugin. -- Automatically set up your configuration after cloning packer.nvim -- Put this at the end after all plugins