Update theme

This commit is contained in:
David Francis 2023-06-23 14:16:55 +01:00
parent 60746cda00
commit 1ba504fa3e
1 changed files with 18 additions and 5 deletions

View File

@ -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