diff options
| author | Nanderty <psopka@sopka.ch> | 2023-05-01 10:29:09 +0200 |
|---|---|---|
| committer | Nanderty <psopka@sopka.ch> | 2023-05-01 10:29:09 +0200 |
| commit | 5b86f069582eaff5d360e62e28dcaba3aee9de47 (patch) | |
| tree | 6722f448c2f272ee6fd195eaf53adb58ff4b889a /lua/plugins | |
| parent | d37f266e7719a67faa99b3ec62e9a51f0033cfc2 (diff) | |
| download | neovim-config-5b86f069582eaff5d360e62e28dcaba3aee9de47.tar.gz neovim-config-5b86f069582eaff5d360e62e28dcaba3aee9de47.tar.bz2 neovim-config-5b86f069582eaff5d360e62e28dcaba3aee9de47.zip | |
Greek
Diffstat (limited to 'lua/plugins')
| -rw-r--r-- | lua/plugins/colorscheme.lua | 24 | ||||
| -rw-r--r-- | lua/plugins/interface.lua | 3 | ||||
| -rw-r--r-- | lua/plugins/telescope.lua | 2 |
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 = { "█", " ", "▀", "█", "█", " ", " ", "▀" }, }, }, }, |
