From ef429e5f080cf11e498fe7a4dfbddcb8b06257e2 Mon Sep 17 00:00:00 2001 From: "lorran.thierry.david" Date: Tue, 23 Jul 2024 22:52:27 -0300 Subject: [PATCH] remove starter and change theme to dracula --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index a98cb24a..ab5574ca 100644 --- a/init.lua +++ b/init.lua @@ -840,14 +840,14 @@ require('lazy').setup({ -- change the command in the config to whatever the name of that colorscheme is. -- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. - 'catppuccin/nvim', - name = 'catppuccin', + 'Mofiqul/dracula.nvim', + name = 'dracula', priority = 1000, -- Make sure to load this before all the other start plugins. init = function() -- Load the colorscheme here. -- 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 'catppuccin-macchiato' + vim.cmd.colorscheme 'dracula' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none' @@ -891,7 +891,7 @@ require('lazy').setup({ end -- Starter screen - require('mini.starter').setup() + -- require('mini.starter').setup() -- Jump to next/previous single character require('mini.jump').setup()