summaryrefslogtreecommitdiff
path: root/home/config/nvim/lua/theme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'home/config/nvim/lua/theme.lua')
-rw-r--r--home/config/nvim/lua/theme.lua32
1 files changed, 18 insertions, 14 deletions
diff --git a/home/config/nvim/lua/theme.lua b/home/config/nvim/lua/theme.lua
index 79631c1..34a379b 100644
--- a/home/config/nvim/lua/theme.lua
+++ b/home/config/nvim/lua/theme.lua
@@ -11,12 +11,11 @@ catppuccin.setup({
lsp = false
},
barbecue = {
- dim_dirname = true, -- directory name is dimmed by default
- bold_basename = true,
- dim_context = false,
- alt_background = false,
+ dim_dirname = true, -- directory name is dimmed by default
+ bold_basename = true,
+ dim_context = false,
+ alt_background = false,
},
- coc_nvim = true,
fidget = true,
markdown = true,
notify = true,
@@ -28,12 +27,12 @@ local colorscheme = "catppuccin"
local ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
vim.o.background = "dark" -- or "light" for light mode
if not ok then
- vim.notify("colorscheme " .. colorscheme .. " not found!")
- return
+ vim.notify("colorscheme " .. colorscheme .. " not found!")
+ return
end
require('lualine').setup {
- options = {
+ options = {
theme = colorscheme,
icons_enabled = true,
globalstatus = true,
@@ -43,9 +42,9 @@ require('lualine').setup {
require('todo-comments').setup()
require('indent-o-matic').setup {
- max_lines = 2048,
- standard_widths = { 2, 4, 8 },
- skip_multiline = true,
+ max_lines = 2048,
+ standard_widths = { 2, 4, 8 },
+ skip_multiline = true,
}
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
@@ -55,9 +54,9 @@ vim.api.nvim_set_hl(0, "NvimTreeNormal", { bg = "none" })
vim.opt.termguicolors = true
require("bufferline").setup {}
require("fidget").setup {
- window = {
- blend = 0,
- },
+ window = {
+ blend = 0,
+ },
}
local theme = require('menu')
@@ -66,3 +65,8 @@ require('alpha').setup(theme.config)
require('hologram').setup {
auto_display = true
}
+
+require("virt-column").setup {
+ enabled = true,
+ virtcolumn = "80"
+}