From 737890bb627c66202273abfbe8b0bb373d5ce1b5 Mon Sep 17 00:00:00 2001 From: Christian Busch Date: Thu, 12 Feb 2026 23:22:13 +0100 Subject: [PATCH] VIM: CHange colorscheme to catpuccin mocha --- .config/vim/vimrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/vim/vimrc b/.config/vim/vimrc index d8a28b3..bd4584b 100644 --- a/.config/vim/vimrc +++ b/.config/vim/vimrc @@ -21,7 +21,7 @@ autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)')) " Specify a directory for plugins call plug#begin($VIMDOTDIR.'/plugged') Plug 'elzr/vim-json' - Plug 'nordtheme/vim' + Plug 'catppuccin/vim', { 'as': 'catppuccin' } call plug#end() set backspace=2 " Make the backspace behave as most applications. @@ -42,7 +42,8 @@ set nrformats-=octal " Remove octal support from 'nrformats'. set tabstop=2 " Size of a Tab character. set shiftwidth=2 " Use same value as 'tabstop'. set softtabstop=2 " Use same value as 'shiftwidth'. -color nord " Use Nord color scheme +set termguicolors " Enable true color support +color catppuccin_mocha " Use Catppuccin Mocha color scheme set listchars=tab:»·,trail:·,eol:¤,nbsp:ʽ " Define invisible chars set wrap linebreak " Softwrap long lines at window border, don't break words set showbreak=  " Indent softwrapped lines with unbreakable space