user/catppuccin: init

This commit is contained in:
LavaDesu 2025-01-24 12:57:53 +11:00
parent ee430bd7d0
commit 9a85f90699
Signed by: cilly
GPG key ID: 6500251E087653C9
8 changed files with 243 additions and 23 deletions

View file

@ -49,24 +49,25 @@ vim.g.signify_sign_change_delete = vim.g.signify_sign_delete
vim.g.vimtex_view_method = "zathura"
-- Theming
require("tokyonight").setup({
style = "night"
})
vim.cmd[[
syntax enable
colorscheme tokyonight
]]
local colors = require("tokyonight.colors").setup {}
vim.cmd("highlight SignifySignAdd guifg="..colors.green)
vim.cmd("highlight SignifySignChange guifg="..colors.orange)
vim.cmd("highlight SignifySignDelete guifg="..colors.red)
vim.cmd("highlight SignifySignDeleteFirstLine guifg="..colors.red)
vim.cmd("highlight SignifySignChangeDelete guifg="..colors.red)
vim.api.nvim_command("syntax enable")
-- require("tokyonight").setup({
-- style = "night"
-- })
-- vim.cmd[[
-- syntax enable
-- colorscheme tokyonight
-- ]]
-- local colors = require("tokyonight.colors").setup {}
-- vim.cmd("highlight SignifySignAdd guifg="..colors.green)
-- vim.cmd("highlight SignifySignChange guifg="..colors.orange)
-- vim.cmd("highlight SignifySignDelete guifg="..colors.red)
-- vim.cmd("highlight SignifySignDeleteFirstLine guifg="..colors.red)
-- vim.cmd("highlight SignifySignChangeDelete guifg="..colors.red)
-- Set this specific highlight group in rust
-- Shown when using #[cfg] directives, entire chunks of disabled code has squiggly lines and I don't want
-- to see it
vim.cmd("au FileType rust highlight DiagnosticUnderlineHint ctermfg=14 gui=italic guifg="..colors.comment)
-- vim.cmd("au FileType rust highlight DiagnosticUnderlineHint ctermfg=14 gui=italic guifg="..colors.comment)
-- Plugins
require('nvim-treesitter.configs').setup {