diff options
| author | DemonKingSwarn <rockingswarn@gmail.com> | 2026-05-03 01:17:12 +0530 |
|---|---|---|
| committer | DemonKingSwarn <rockingswarn@gmail.com> | 2026-05-03 01:17:12 +0530 |
| commit | 1c7a8e4afaca2d0687e4c0c735f7280d62b560ec (patch) | |
| tree | 53af199c685697feaa5d0286d826dcee59058a7a /lua/plugins/colourscheme.lua | |
| parent | f1973e83d82818583b91786198e81895bc927044 (diff) | |
| download | nvim-1c7a8e4afaca2d0687e4c0c735f7280d62b560ec.zip nvim-1c7a8e4afaca2d0687e4c0c735f7280d62b560ec.tar.gz | |
Fixed Bug
an automated commit
Diffstat (limited to 'lua/plugins/colourscheme.lua')
| -rw-r--r-- | lua/plugins/colourscheme.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/plugins/colourscheme.lua b/lua/plugins/colourscheme.lua new file mode 100644 index 0000000..3f7c434 --- /dev/null +++ b/lua/plugins/colourscheme.lua @@ -0,0 +1,9 @@ +vim.pack.add({"https://github.com/serhez/teide.nvim"}) + +local function ColorMyPencils() + vim.cmd([[colorscheme teide-darker]]) + vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) + vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) +end + +ColorMyPencils() |
