themes in a weird way

This commit is contained in:
aliaksandrkotau 2023-12-16 14:14:47 +01:00
parent 3c816f0dd1
commit 0909253bf3
2 changed files with 18 additions and 5 deletions

View File

@ -5,6 +5,11 @@ vim.g.maplocalleader = ' '
vim.g.quickui_border_style = 3
vim.g.quickui_color_scheme = 'gruvbox'
-- THEME Choicess:
_G.THEME_REPO, _G.THEME_NAME = 'navarasu/onedark.nvim', 'onedark'
--_G.THEME_REPO, _G.THEME_NAME = 'sainnhe/sonokai', 'sonokai'
--_G.THEME_REPO, _G.THEME_NAME = 'mhartington/oceanic-next', 'OceanicNext'
-- [[ Install `lazy.nvim` plugin manager ]]
-- https://github.com/folke/lazy.nvim
-- `:help lazy.nvim.txt` for more info
@ -152,11 +157,12 @@ require('lazy').setup({
},
{
-- Theme inspired by Atom
'navarasu/onedark.nvim',
-- Choices:
----'navarasu/onedark.nvim',
_G.THEME_REPO,
priority = 1000,
config = function()
vim.cmd.colorscheme 'onedark'
vim.cmd('colorscheme '.._G.THEME_NAME)
end,
},
@ -167,7 +173,7 @@ require('lazy').setup({
opts = {
options = {
icons_enabled = false,
theme = 'onedark',
theme = _G.THEME_NAME,
component_separators = '|',
section_separators = '|',
},
@ -667,6 +673,13 @@ vim.cmd [[
\ [ '&Find', 'echo 3', 'help 3' ],
\ ])
]]
-- vim.cmd [[
-- call quickui#menu#install('&Search', [
-- \ [ 'In &File', ':/'],
-- \ [ '&Remove Highlight', ':noh'],
-- \ [ 'In &Project', 'echo "undefined"' ],
-- \ ])
--]]
vim.cmd [[
call quickui#menu#install('&Window', [
\ ['Open &Neotree', ':Neotree'],

View File

@ -24,7 +24,7 @@
"nvim-treesitter": { "branch": "master", "commit": "78d75bce03f218ee30aedb6e24e3ec1189a3e9ff" },
"nvim-treesitter-textobjects": { "branch": "master", "commit": "ec1c5bdb3d87ac971749fa6c7dbc2b14884f1f6a" },
"nvim-web-devicons": { "branch": "master", "commit": "8b2e5ef9eb8a717221bd96cb8422686d65a09ed5" },
"onedark.nvim": { "branch": "master", "commit": "c5476a091b0f1b4e853db91c91ff941f848a1cdd" },
"oceanic-next": { "branch": "master", "commit": "09833f72d5ba23de2e8bcae18f479f326f5f677a" },
"plenary.nvim": { "branch": "master", "commit": "55d9fe89e33efd26f532ef20223e5f9430c8b0c0" },
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" },
"telescope.nvim": { "branch": "0.1.x", "commit": "d90956833d7c27e73c621a61f20b29fdb7122709" },