From 259edef4ef61770a8e4ba8cd3f4651adcabe0bcb Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Wed, 13 Sep 2023 19:52:59 +0200 Subject: [PATCH] changed default theme --- init.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index eb705f9..095a67c 100644 --- a/init.lua +++ b/init.lua @@ -31,18 +31,18 @@ local keymap = { snippet_confirm = '', snippet_jump_forward = '', snippet_jump_backward = '', - snippet_jump_to_end = '', --> Edit snippets for the current file with the custom S command. --> Follow the printed instructions on failure. } local TAB_WIDTH = 4 ---@type installed_themes -local colorscheme = 'gruvbox' +local colorscheme = 'habamax' vim.o.termguicolors = true vim.cmd('colorscheme ' .. colorscheme) +vim.cmd [[ autocmd VimEnter * NoMatchParen ]] vim.g.mapleader = keymap.leader_key vim.g.maplocalleader = keymap.leader_key vim.opt.tabstop = TAB_WIDTH -- Character width of a tab @@ -117,7 +117,6 @@ local function packer_startup(use) use 'folke/zen-mode.nvim' -- For centering the text on screen giving a better editing experience in full-screen mode. - if packer_bootstrap then --Comes after packages require('packer').sync() end