diff --git a/.config/nvim/after/plugin/theme.lua b/.config/nvim/after/plugin/theme.lua index e3eafa8..f47322d 100644 --- a/.config/nvim/after/plugin/theme.lua +++ b/.config/nvim/after/plugin/theme.lua @@ -1,17 +1,15 @@ -vim.o.background = 'light' +-- vim.o.background = 'light' -require('solarized').setup({ - theme = 'default', -- or 'neo' - styles = { - comments = { italic = true, bold = false }, - functions = { italic = true, bold = true }, - variables = { italic = false, bold = false }, - parameters = { italic = true, bold = false }, - } -}) +-- require('solarized').setup({ +-- theme = 'default', -- or 'neo' +-- styles = { +-- comments = { italic = true, bold = false }, +-- functions = { italic = true, bold = true }, +-- variables = { italic = false, bold = false }, +-- parameters = { italic = true, bold = false }, +-- } +-- }) +-- +-- vim.cmd.colorscheme = 'solarized' -vim.cmd.colorscheme = 'solarized' - -function test() - print('test') -end +require("everforest").load() diff --git a/.config/nvim/lua/talksik/packer.lua b/.config/nvim/lua/talksik/packer.lua index 1124885..76ac318 100644 --- a/.config/nvim/lua/talksik/packer.lua +++ b/.config/nvim/lua/talksik/packer.lua @@ -68,6 +68,13 @@ return require('packer').startup(function(use) -- themes use('maxmx03/solarized.nvim') + use({ + -- Optional; default configuration will be used if setup isn't called. + "neanias/everforest-nvim", + config = function() + require("everforest").setup() + end, + }) use('nvim-lua/lsp-status.nvim')