diff --git a/init.lua b/init.lua index e7f1eec4..c3795f5d 100644 --- a/init.lua +++ b/init.lua @@ -154,10 +154,10 @@ require('lazy').setup({ { -- Theme inspired by Atom - 'navarasu/onedark.nvim', + 'shatur/neovim-ayu', priority = 1000, config = function() - vim.cmd.colorscheme 'onedark' + vim.cmd.colorscheme 'ayu-dark' end, }, @@ -168,7 +168,7 @@ require('lazy').setup({ opts = { options = { icons_enabled = false, - theme = 'onedark', + theme = 'ayu', component_separators = '|', section_separators = '', }, @@ -606,3 +606,23 @@ cmp.setup { -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et + +{ + 'glacambre/firenvim', + + -- Lazy load firenvim + -- Explanation: https://github.com/folke/lazy.nvim/discussions/463#discussioncomment-4819297 + lazy = not vim.g.started_by_firenvim, + build = function() + vim.fn["firenvim#install"](0) + end +}{ + 'glacambre/firenvim', + + -- Lazy load firenvim + -- Explanation: https://github.com/folke/lazy.nvim/discussions/463#discussioncomment-4819297 + lazy = not vim.g.started_by_firenvim, + build = function() + vim.fn["firenvim#install"](0) + end +}