Added new theme I think?
This commit is contained in:
parent
e3cc5dd8f9
commit
590af61a7f
11
init.lua
11
init.lua
|
|
@ -138,6 +138,11 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- I want to be able to use this, TODO resolve
|
||||||
|
-- {
|
||||||
|
-- "nyoom-engineering/oxocarbon.nvim"
|
||||||
|
-- },
|
||||||
|
|
||||||
{
|
{
|
||||||
-- Theme inspired by Atom
|
-- Theme inspired by Atom
|
||||||
'navarasu/onedark.nvim',
|
'navarasu/onedark.nvim',
|
||||||
|
|
@ -220,6 +225,12 @@ require('lazy').setup({
|
||||||
{ import = 'custom.plugins' },
|
{ import = 'custom.plugins' },
|
||||||
}, {})
|
}, {})
|
||||||
|
|
||||||
|
-- Configure Glow
|
||||||
|
require('glow').setup({
|
||||||
|
style = 'dark',
|
||||||
|
install_path = os.getenv("GLOW_PATH")
|
||||||
|
})
|
||||||
|
|
||||||
-- [[ 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!
|
||||||
|
|
|
||||||
|
|
@ -23,5 +23,10 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'ThePrimeagen/harpoon'
|
'ThePrimeagen/harpoon'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ellisonleao/glow.nvim",
|
||||||
|
config = true,
|
||||||
|
cmd = "Glow"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue