From 8b9c9d163be55cbb7f861b1a5f8403e3ea0e0984 Mon Sep 17 00:00:00 2001 From: Ian Roddis <31021769+iroddis@users.noreply.github.com> Date: Wed, 24 Jul 2024 13:38:40 -0300 Subject: [PATCH] removing copilot, adding context, changing colourscheme --- init.lua | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index d72ec02..e13179e 100644 --- a/init.lua +++ b/init.lua @@ -74,7 +74,7 @@ require('lazy').setup({ 'tpope/vim-rhubarb', 'junegunn/vim-easy-align', 'jpalardy/vim-slime', - 'github/copilot.vim', + -- 'github/copilot.vim', 'mhartington/formatter.nvim', -- Detect tabstop and shiftwidth automatically @@ -218,15 +218,22 @@ require('lazy').setup({ { -- Theme inspired by Atom - 'maxmx03/solarized.nvim', + -- 'maxmx03/solarized.nvim', + 'dracula/vim', priority = 1000, lazy = false, config = function() vim.o.background = 'dark' - vim.cmd.colorscheme 'solarized' + vim.cmd.colorscheme 'dracula' end, }, + { + 'nvim-treesitter/nvim-treesitter-context', + opts = { + enable = true, + } + }, { -- Set lualine as statusline 'nvim-lualine/lualine.nvim',