From 8d9bdb7d7ffc22174a05f6e0b71355607209af86 Mon Sep 17 00:00:00 2001 From: Thitiwat Hemvimon Date: Tue, 5 Nov 2024 16:22:20 +0700 Subject: [PATCH] switch to everforest --- init.lua | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/init.lua b/init.lua index 94ab36d1..3eec733f 100644 --- a/init.lua +++ b/init.lua @@ -11,7 +11,6 @@ vim.g.have_nerd_font = true -- See `:help vim.opt` -- NOTE: You can change these options as you wish! -- For more options, you can see `:help option-list` - -- Make line numbers default vim.opt.number = true -- You can also add relative line numbers, to help with jumping. @@ -139,24 +138,10 @@ vim.opt.rtp:prepend(lazypath) -- -- NOTE: Here is where you install your plugins. require('lazy').setup({ + + { 'sainnhe/everforest' }, + { 'github/copilot.vim' }, { 'catppuccin/nvim', name = 'catppuccin', priority = 1000 }, - { - 'zbirenbaum/copilot.lua', - cmd = 'Copilot', - event = 'InsertEnter', - config = function() - require('copilot').setup { - suggestion = { enabled = false }, - panel = { enabled = false }, - } - end, - }, - { - 'zbirenbaum/copilot-cmp', - config = function() - require('copilot_cmp').setup() - end, - }, { 'nvim-neo-tree/neo-tree.nvim', branch = 'v3.x', @@ -746,7 +731,6 @@ require('lazy').setup({ -- set group index to 0 to skip loading LuaLS completions as lazydev recommends it group_index = 0, }, - { name = 'copilot' }, { name = 'nvim_lsp' }, { name = 'luasnip' }, { name = 'path' }, @@ -767,7 +751,7 @@ require('lazy').setup({ -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. -- vim.cmd.colorscheme 'tokyonight-night' - vim.cmd.colorscheme 'darkblue' + vim.cmd.colorscheme 'everforest' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none'