From 1ba504fa3ef806e4e8dce2980a4a32940109b110 Mon Sep 17 00:00:00 2001 From: David Francis Date: Fri, 23 Jun 2023 14:16:55 +0100 Subject: [PATCH] Update theme --- init.lua | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/init.lua b/init.lua index 172d2e63..13a1beeb 100644 --- a/init.lua +++ b/init.lua @@ -92,13 +92,22 @@ require('lazy').setup({ }, }, + -- { + -- -- Theme inspired by Atom + -- 'navarasu/onedark.nvim', + -- priority = 1000, + -- config = function() + -- vim.cmd.colorscheme 'onedark' + -- end, + -- }, + { - -- Theme inspired by Atom - 'navarasu/onedark.nvim', + "catppuccin/nvim", + name = "catppuccin", priority = 1000, config = function() - vim.cmd.colorscheme 'onedark' - end, + vim.cmd.colorscheme 'catppuccin' -- 'catppuccin-latte', 'catppuccin-frappe', 'catppuccin-macchiato', 'catppuccin-mocha' + end }, { @@ -108,7 +117,7 @@ require('lazy').setup({ opts = { options = { icons_enabled = false, - theme = 'onedark', + theme = 'auto', component_separators = '|', section_separators = '', }, @@ -210,6 +219,10 @@ vim.o.completeopt = 'menuone,noselect' -- NOTE: You should make sure your terminal supports this vim.o.termguicolors = true +vim.o.tabstop = 4 +vim.o.shiftwidth = 4 +vim.o.expandtab = true + -- [[ Basic Keymaps ]] -- Keymaps for better default experience