Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
TwIStOy committed Apr 3, 2024
1 parent 4286de4 commit b28ca12
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions lua/dotvim/pkgs/theme/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ return {
plugins = {
require("dotvim.pkgs.theme.plugins.catppuccin"),
require("dotvim.pkgs.theme.plugins.rose-pine"),
require("dotvim.pkgs.theme.plugins.cyberdream"),
},
setup = function()
if not vim.g.vscode then
Expand Down
22 changes: 22 additions & 0 deletions lua/dotvim/pkgs/theme/plugins/cyberdream.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---@type dotvim.core.plugin.PluginOption
return {
"scottmckendry/cyberdream.nvim",
lazy = true,
priority = 1000,
config = function()
require("cyberdream").setup {
transparent = true,
italic_comments = true,
hide_fillchars = true,
borderless_telescope = true,
terminal_colors = true,
theme = {
["@lsp.typemod.variable.mutable.rust"] = { underline = true },
["@lsp.typemod.selfKeyword.mutable.rust"] = {
underline = true,
},
["@variable.builtin"] = { italic = true },
},
}
end,
}

0 comments on commit b28ca12

Please sign in to comment.