From 09d8163ba8c3cbb0ac6e398bb23c0a2169813df9 Mon Sep 17 00:00:00 2001 From: ChrisHilborne Date: Wed, 20 Sep 2023 18:34:32 +0200 Subject: [PATCH] Update to share across machines --- init.lua | 12 ++++++------ .../plugins}/plugins/autoformat.lua | 0 lua/{kickstart => custom/plugins}/plugins/debug.lua | 0 3 files changed, 6 insertions(+), 6 deletions(-) rename lua/{kickstart => custom/plugins}/plugins/autoformat.lua (100%) rename lua/{kickstart => custom/plugins}/plugins/debug.lua (100%) diff --git a/init.lua b/init.lua index ea330eb1..f24b17f3 100644 --- a/init.lua +++ b/init.lua @@ -144,10 +144,10 @@ require('lazy').setup({ { -- Theme inspired by Atom - 'navarasu/onedark.nvim', + "catppuccin/nvim", priority = 1000, config = function() - vim.cmd.colorscheme 'onedark' + vim.cmd.colorscheme 'catppuccin-mocha' end, }, @@ -158,7 +158,7 @@ require('lazy').setup({ opts = { options = { icons_enabled = false, - theme = 'onedark', + theme = 'catppuccin-mocha', component_separators = '|', section_separators = '', }, @@ -212,8 +212,8 @@ require('lazy').setup({ -- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart -- These are some example plugins that I've included in the kickstart repository. -- Uncomment any of the lines below to enable them. - -- require 'kickstart.plugins.autoformat', - -- require 'kickstart.plugins.debug', + -- require 'kickstart.plugins.autoformat', + -- require 'kickstart.plugins.debug', -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua` -- You can use this folder to prevent any conflicts with this init.lua if you're interested in keeping @@ -221,7 +221,7 @@ require('lazy').setup({ -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. -- -- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins - -- { import = 'custom.plugins' }, +{ import = 'custom.plugins' }, }, {}) -- [[ Setting options ]] diff --git a/lua/kickstart/plugins/autoformat.lua b/lua/custom/plugins/plugins/autoformat.lua similarity index 100% rename from lua/kickstart/plugins/autoformat.lua rename to lua/custom/plugins/plugins/autoformat.lua diff --git a/lua/kickstart/plugins/debug.lua b/lua/custom/plugins/plugins/debug.lua similarity index 100% rename from lua/kickstart/plugins/debug.lua rename to lua/custom/plugins/plugins/debug.lua