Merge branch '04-colorscheme' into 03-plugins

pull/169/head
Kevin Lausen 3 years ago committed by GitHub
commit e527e55069
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,3 +13,6 @@ require "user.abbrs"
-- b/c it's where I will be adding plugins to packer. -- b/c it's where I will be adding plugins to packer.
-- I like that Packer is fully in lua. -- I like that Packer is fully in lua.
require "user.plugins" require "user.plugins"
-- This is where I will add my plugins.
require "user.colorscheme"

@ -0,0 +1,7 @@
local colorscheme = "default"
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
vim.notify("colorscheme " .. colorscheme .. " not found!")
return
end

@ -51,6 +51,10 @@ return packer.startup(function(use)
use "ryanoasis/vim-devicons" -- Developer icons for Neo-vim plugins like file-managers... use "ryanoasis/vim-devicons" -- Developer icons for Neo-vim plugins like file-managers...
use "tpope/vim-surround" -- great tag/code-encapsulator plugin. use "tpope/vim-surround" -- great tag/code-encapsulator plugin.
-- Colorschemes
-- use "lunarvim/colorschemes" -- A bunch of colorschemes you can try out
use "lunarvim/darkplus.nvim"
-- 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
if PACKER_BOOTSTRAP then if PACKER_BOOTSTRAP then

Loading…
Cancel
Save