Merge branch 'master' of github.com:titusdmoore/kickstart.nvim
This commit is contained in:
commit
899906525a
23
init.lua
23
init.lua
|
|
@ -138,6 +138,13 @@ require('lazy').setup({
|
|||
},
|
||||
},
|
||||
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
},
|
||||
|
||||
{
|
||||
-- Theme inspired by Atom
|
||||
'navarasu/onedark.nvim',
|
||||
|
|
@ -154,7 +161,7 @@ require('lazy').setup({
|
|||
opts = {
|
||||
options = {
|
||||
icons_enabled = false,
|
||||
theme = 'onedark',
|
||||
theme = 'tokyonight',
|
||||
component_separators = '|',
|
||||
section_separators = '',
|
||||
},
|
||||
|
|
@ -220,6 +227,20 @@ require('lazy').setup({
|
|||
{ 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 ]]
|
||||
-- See `:help vim.o`
|
||||
-- NOTE: You can change these options as you wish!
|
||||
|
|
|
|||
|
|
@ -23,5 +23,10 @@ return {
|
|||
},
|
||||
{
|
||||
'ThePrimeagen/harpoon'
|
||||
},
|
||||
{
|
||||
"ellisonleao/glow.nvim",
|
||||
config = true,
|
||||
cmd = "Glow"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue