visual tweaks, thin 80/120 lines, transarent bg

This commit is contained in:
dpearre 2024-10-14 12:58:47 -07:00
parent 33b7e9735f
commit e07d377f5f
1 changed files with 9 additions and 0 deletions

View File

@ -284,6 +284,9 @@ require('lazy').setup({
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically 'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
'tpope/vim-fugitive', -- git integration 'tpope/vim-fugitive', -- git integration
'jpalardy/vim-slime', -- for piping code into external service like a REPL 'jpalardy/vim-slime', -- for piping code into external service like a REPL
'godlygeek/tabular',
-- for showing the `colorcolumn` 80 and 120 reference lines as thin lines:
'xiyaowong/virtcolumn.nvim',
'mbbill/undotree', -- recommended undo history system 'mbbill/undotree', -- recommended undo history system
{ {
'jpalardy/vim-slime', -- for piping code into external service like a REPL 'jpalardy/vim-slime', -- for piping code into external service like a REPL
@ -929,6 +932,12 @@ require('lazy').setup({
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night' vim.cmd.colorscheme 'tokyonight-night'
vim.cmd [[
highlight Normal guibg=none ctermbg=none
highlight NonText guibg=none ctermbg=none
highlight NormalNC guibg=none ctermbg=none
]]
-- You can configure highlights by doing something like: -- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none' vim.cmd.hi 'Comment gui=none'
end, end,