From 9898f1b7973e87686c3d54f3dcd0309a446e0a39 Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Thu, 30 Dec 2021 20:01:53 +0100 Subject: [PATCH] Use light colorscheme --- .bashrc | 2 +- nvim/lua/options.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index 36c3928..128d6e2 100644 --- a/.bashrc +++ b/.bashrc @@ -58,7 +58,7 @@ if [ "$color_prompt" = yes ]; then if [ "$CONTAINER_OR_VM" = true ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else - PS1="\[\033[1;33m\]\u\[\033[1;34m\]@\[\033[1;32m\]\h \[\033[1;34m\]\w\\[\033[0;37m\]$ " + PS1="\[\033[1;35m\]\u\[\033[1;34m\]@\[\033[1;30m\]\h \[\033[1;34m\]\w\\[\033[0;37m\]$ " fi else PS1='\u@\h:\w\$ ' diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua index bdc5936..b50da15 100644 --- a/nvim/lua/options.lua +++ b/nvim/lua/options.lua @@ -51,7 +51,7 @@ vim.o.lbr = true vim.o.cursorline = true vim.o.termguicolors = true -vim.o.background = 'dark' +vim.o.background = 'light' --enable statusbar vim.o.laststatus = 2