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.
pull/169/head
Kevin James Lausen 3 years ago
parent 81e18767ba
commit 2a21f9a785

@ -44,6 +44,12 @@ return packer.startup(function(use)
use "wbthomason/packer.nvim" -- Have packer manage itself 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/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 "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 -- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins -- Put this at the end after all plugins

Loading…
Cancel
Save