Visual default

This commit is contained in:
0xfa1z 2023-11-11 19:45:58 +01:00
parent 80e6917e7b
commit e8d567e813
1 changed files with 4 additions and 2 deletions

View File

@ -152,6 +152,7 @@ require('lazy').setup({
}, },
}, },
--[[
{ {
-- Theme inspired by Atom -- Theme inspired by Atom
'navarasu/onedark.nvim', 'navarasu/onedark.nvim',
@ -174,6 +175,7 @@ require('lazy').setup({
}, },
}, },
}, },
]]
{ {
-- Add indentation guides even on blank lines -- Add indentation guides even on blank lines
@ -261,7 +263,7 @@ vim.o.ignorecase = true
vim.o.smartcase = true vim.o.smartcase = true
-- Keep signcolumn on by default -- Keep signcolumn on by default
vim.wo.signcolumn = 'yes' vim.wo.signcolumn = 'auto'
-- Decrease update time -- Decrease update time
vim.o.updatetime = 250 vim.o.updatetime = 250
@ -271,7 +273,7 @@ vim.o.timeoutlen = 300
vim.o.completeopt = 'menuone,noselect' vim.o.completeopt = 'menuone,noselect'
-- NOTE: You should make sure your terminal supports this -- NOTE: You should make sure your terminal supports this
vim.o.termguicolors = true vim.o.termguicolors = false
-- [[ Basic Keymaps ]] -- [[ Basic Keymaps ]]