summaryrefslogtreecommitdiffstats
path: root/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins')
-rw-r--r--lua/plugins/colorscheme.lua24
-rw-r--r--lua/plugins/interface.lua3
-rw-r--r--lua/plugins/telescope.lua2
3 files changed, 6 insertions, 23 deletions
diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua
index 5e226d6..f2f5906 100644
--- a/lua/plugins/colorscheme.lua
+++ b/lua/plugins/colorscheme.lua
@@ -1,28 +1,14 @@
return {
{
- 'rose-pine/neovim',
- name = 'rose-pine',
+ 'loctvl842/monokai-pro.nvim',
lazy = false,
priority = 1000,
config = function()
- require('rose-pine').setup({
- variant = 'moon',
- highlight_groups = {
- TelescopePromptNormal = { fg = 'base', bg = 'rose' },
- TelescopePromptBorder = { bg = 'rose' },
- TelescopePromptTitle = { fg = 'base' },
- TelescopePromptPrefix = { fg = 'base' },
- TelescopePromptCounter = { fg = 'base' },
- TelescopePreviewNormal = { bg = 'overlay' },
- TelescopePreviewBorder = { bg = 'overlay' },
- TelescopeResultsNormal = { bg = 'overlay' },
- TelescopeResultsBorder = { bg = 'overlay' },
- },
- groups = {
- background = 'none',
- },
+ require('monokai-pro').setup({
+ filter = 'octagon',
+ background_clear = {},
})
- vim.cmd('colorscheme rose-pine')
+ vim.cmd('colorscheme monokai-pro')
end,
},
}
diff --git a/lua/plugins/interface.lua b/lua/plugins/interface.lua
index ede5cf8..795961a 100644
--- a/lua/plugins/interface.lua
+++ b/lua/plugins/interface.lua
@@ -20,9 +20,6 @@ return {
'nvim-lualine/lualine.nvim',
event = 'VeryLazy',
opts = {
- options = {
- theme = 'rose-pine'
- },
sections = {
lualine_x = {},
lualine_y = {},
diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua
index 3f1a9b8..0efadfd 100644
--- a/lua/plugins/telescope.lua
+++ b/lua/plugins/telescope.lua
@@ -34,7 +34,7 @@ return {
height = 0.80,
preview_cutoff = 120,
},
- borderchars = { ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' },
+ borderchars = { "█", " ", "▀", "█", "█", " ", " ", "▀" },
},
},
},