user/catppuccin: init
This commit is contained in:
parent
ee430bd7d0
commit
9a85f90699
8 changed files with 243 additions and 23 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue