summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthew Wozniak <sirtomato999@gmail.com> 2024-01-02 05:33:17 -0500
committerGravatar Matthew Wozniak <sirtomato999@gmail.com> 2024-01-02 05:33:17 -0500
commit3acd7480f0b2fa14e01f675d5e307f7cf81e1b9f (patch)
tree6c73185299fd062c7e37dae1ab8e9585d1965c96
parent1cc2576d1c0318d1098c3bebe6548aeff2773764 (diff)
downloadnvim-3acd7480f0b2fa14e01f675d5e307f7cf81e1b9f.tar.gz
nvim-3acd7480f0b2fa14e01f675d5e307f7cf81e1b9f.zip
dim for terminal colors
-rw-r--r--after/plugin/cfg.vim7
-rw-r--r--init.lua1
2 files changed, 4 insertions, 4 deletions
diff --git a/after/plugin/cfg.vim b/after/plugin/cfg.vim
index 78a0146..8fac0a4 100644
--- a/after/plugin/cfg.vim
+++ b/after/plugin/cfg.vim
@@ -1,6 +1,5 @@
let g:mapleader = ' '
set number
-set ff=unix
set sw=4 ts=4 noet tw=80 cc=80
set spr sb
set pb=12 winbl=12
@@ -16,8 +15,8 @@ set guioptions-=L
set gfn=DejaVuSansM\ Nerd\ Font\ Mono:h12
set noshowmode
-colorscheme seoul256
-
if !has('gui_running')
- hi Normal guibg=NONE ctermbg=NONE
+ colorscheme dim
+else
+ colorscheme seoul256
endif
diff --git a/init.lua b/init.lua
index 31cace1..c3468ae 100644
--- a/init.lua
+++ b/init.lua
@@ -14,6 +14,7 @@ vim.opt.rtp:prepend(lazypath)
-- Plugin manager
require("lazy").setup({
+ "jeffkreeftmeijer/vim-dim",
"junegunn/seoul256.vim",
"neovim/nvim-lspconfig",
"hrsh7th/nvim-cmp",