Skip to content

Commit fd9547b

Browse files
author
Joshua Molloy
committed
custom colourscheme and added two plugins from the default
1 parent c9122e8 commit fd9547b

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

init.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ require('lazy').setup {
722722
--
723723
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`
724724
'folke/tokyonight.nvim',
725-
lazy = false, -- make sure we load this during startup if it is your main colorscheme
725+
lazy = true, -- make sure we load this during startup if it is your main colorscheme
726726
priority = 1000, -- make sure to load this before all the other start plugins
727727
config = function()
728728
-- Load the colorscheme here
@@ -806,15 +806,15 @@ require('lazy').setup {
806806
-- Here are some example plugins that I've included in the kickstart repository.
807807
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
808808
--
809-
-- require 'kickstart.plugins.debug',
810-
-- require 'kickstart.plugins.indent_line',
809+
require 'kickstart.plugins.debug',
810+
require 'kickstart.plugins.indent_line',
811811

812812
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
813813
-- This is the easiest way to modularize your config.
814814
--
815815
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
816816
-- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
817-
-- { import = 'custom.plugins' },
817+
{ import = 'custom.plugins' },
818818
}
819819

820820
-- The line beneath this is called `modeline`. See `:help modeline`

lua/custom/plugins/init.lua

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,13 @@
22
-- I promise not to create any merge conflicts in this directory :)
33
--
44
-- See the kickstart.nvim README for more information
5-
return {}
5+
return {
6+
{
7+
'bluz71/vim-moonfly-colors',
8+
lazy = false,
9+
priority = 1000,
10+
config = function()
11+
vim.cmd.colorscheme 'moonfly'
12+
end,
13+
},
14+
}

0 commit comments

Comments
 (0)