Merge branch 'master' of github.com:titusdmoore/kickstart.nvim

This commit is contained in:
Titus Moore 2023-11-04 15:45:10 -04:00
commit 899906525a
2 changed files with 27 additions and 1 deletions

View File

@ -138,6 +138,13 @@ require('lazy').setup({
}, },
}, },
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
},
{ {
-- Theme inspired by Atom -- Theme inspired by Atom
'navarasu/onedark.nvim', 'navarasu/onedark.nvim',
@ -154,7 +161,7 @@ require('lazy').setup({
opts = { opts = {
options = { options = {
icons_enabled = false, icons_enabled = false,
theme = 'onedark', theme = 'tokyonight',
component_separators = '|', component_separators = '|',
section_separators = '', section_separators = '',
}, },
@ -220,6 +227,20 @@ require('lazy').setup({
{ import = 'custom.plugins' }, { import = 'custom.plugins' },
}, {}) }, {})
-- Configure Glow
require('glow').setup({
style = 'dark',
install_path = os.getenv("GLOW_PATH")
})
-- Configure Theme
require('tokyonight').setup({
style = 'night',
terminal_colors = true,
sidebars = { 'qf', 'vista_kind', 'terminal', 'packer' },
})
vim.cmd.colorscheme 'tokyonight'
-- [[ Setting options ]] -- [[ Setting options ]]
-- See `:help vim.o` -- See `:help vim.o`
-- NOTE: You can change these options as you wish! -- NOTE: You can change these options as you wish!

View File

@ -23,5 +23,10 @@ return {
}, },
{ {
'ThePrimeagen/harpoon' 'ThePrimeagen/harpoon'
},
{
"ellisonleao/glow.nvim",
config = true,
cmd = "Glow"
} }
} }