Compare commits

...

2 Commits

Author SHA1 Message Date
409
36f2050e1c chore: lazy-lock.json 2024-08-08 16:20:38 +02:00
409
d2b665c748 feat(theme): adjust border colors 2024-08-08 16:20:25 +02:00
2 changed files with 8 additions and 1 deletions

View File

@@ -30,7 +30,7 @@
"nvim-lspconfig": { "branch": "master", "commit": "652386deae739e38fa1bcf2f06e3e7de9b3436ba" },
"nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" },
"nvim-tree-docs": { "branch": "master", "commit": "5db023d783da1e55339e5e25caaf72a59597e626" },
"nvim-treesitter": { "branch": "master", "commit": "3e0feeb062b29bb7d6d6df1e32ba28111c2bb734" },
"nvim-treesitter": { "branch": "master", "commit": "2e01c7104c0983467ee1b9f569e0874b8d2b44c6" },
"nvim-ts-context-commentstring": { "branch": "main", "commit": "6b5f95aa4d24f2c629a74f2c935c702b08dbde62" },
"nvim-web-devicons": { "branch": "master", "commit": "3722e3d1fb5fe1896a104eb489e8f8651260b520" },
"oil.nvim": { "branch": "master", "commit": "fcca212c2e966fc3dec1d4baf888e670631d25d1" },

View File

@@ -6,6 +6,13 @@ return {
priority = 1000,
config = function()
vim.cmd.colorscheme("dracula")
vim.api.nvim_set_hl(0, "QuickFixLine", { link = "Visual" })
vim.api.nvim_set_hl(0, "TelescopePromptBorder", { fg = "#44475a" })
vim.api.nvim_set_hl(0, "TelescopePreviewBorder", { fg = "#44475a" })
vim.api.nvim_set_hl(0, "TelescopeResultsBorder", { fg = "#44475a" })
vim.api.nvim_set_hl(0, "TelescopePromptCounter", { fg = "#44475a" })
vim.api.nvim_set_hl(0, "FloatBorder", { fg = "#44475a" })
end,
},
}