diff options
author | Matthew Lemon <y@yulqen.org> | 2023-05-14 09:10:26 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-05-14 09:10:26 +0100 |
commit | 0721b537a8aa3be8b70c183b25951494df9dcd0e (patch) | |
tree | eff07bbc31aeefbb9d2e441bb5ca8b5a5a527ffb /nvim/after/plugin/colors.lua | |
parent | 10a89dfbc6bc57ce12c8cf90f1b38a34b728b369 (diff) |
Installs nvim config base-idea
Diffstat (limited to 'nvim/after/plugin/colors.lua')
-rw-r--r-- | nvim/after/plugin/colors.lua | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/nvim/after/plugin/colors.lua b/nvim/after/plugin/colors.lua deleted file mode 100644 index fe97b1b..0000000 --- a/nvim/after/plugin/colors.lua +++ /dev/null @@ -1,14 +0,0 @@ -require('rose-pine').setup({ - disable_background = true -}) - -function ColorMyPencils(color) - color = color or "rose-pine" - vim.cmd.colorscheme(color) - - vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) - vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) - -end - -ColorMyPencils() |