From 6230032b643242d19d82b8c5cac16d7f8d5a8e73 Mon Sep 17 00:00:00 2001 From: fine2006 Date: Mon, 27 Nov 2023 17:49:25 +0530 Subject: [PATCH] initial commit --- init.lua | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) 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 +}