mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
add: config color scheme
This commit is contained in:
parent
6f68c8d7b0
commit
ba219f1e96
5 changed files with 192 additions and 189 deletions
|
@ -43,7 +43,7 @@
|
||||||
"nvim-ts-context-commentstring": { "branch": "main", "commit": "7ab799a9792f7cf3883cf28c6a00ad431f3d382a" },
|
"nvim-ts-context-commentstring": { "branch": "main", "commit": "7ab799a9792f7cf3883cf28c6a00ad431f3d382a" },
|
||||||
"nvim-ts-rainbow2": { "branch": "master", "commit": "b3120cd5ae9ca524af9cb602f41e12e301fa985f" },
|
"nvim-ts-rainbow2": { "branch": "master", "commit": "b3120cd5ae9ca524af9cb602f41e12e301fa985f" },
|
||||||
"nvim-web-devicons": { "branch": "master", "commit": "a55b801b7ef5719ca25692c3a0a5447fdfb692ed" },
|
"nvim-web-devicons": { "branch": "master", "commit": "a55b801b7ef5719ca25692c3a0a5447fdfb692ed" },
|
||||||
"onedark.nvim": { "branch": "master", "commit": "1230aaf2a427b2c5b73aba6e4a9a5881d3e69429" },
|
"onedarkpro.nvim": { "branch": "main", "commit": "ec07364f3cfa9cc6467bf067a490cfd74011efcd" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" },
|
"plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" },
|
||||||
"smart-splits.nvim": { "branch": "master", "commit": "f6fcb79527872e9330c554915af2ca511c388390" },
|
"smart-splits.nvim": { "branch": "master", "commit": "f6fcb79527872e9330c554915af2ca511c388390" },
|
||||||
"telescope.nvim": { "branch": "master", "commit": "7472420f8734c710bd7009081cef9b97f08a3821" },
|
"telescope.nvim": { "branch": "master", "commit": "7472420f8734c710bd7009081cef9b97f08a3821" },
|
||||||
|
|
|
@ -16,4 +16,4 @@ require("user.keymaps")
|
||||||
-- require("user.bufferline")
|
-- require("user.bufferline")
|
||||||
-- require("user.chat_gpt")
|
-- require("user.chat_gpt")
|
||||||
-- vim.cmd("colorscheme one_monokai")
|
-- vim.cmd("colorscheme one_monokai")
|
||||||
vim.cmd("colorscheme onedark")
|
-- vim.cmd("colorscheme onedark")
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
-- catppuccin, catppuccin-latte, catppuccin-frappe, catppuccin-macchiato, catppuccin-mocha
|
-- catppuccin, catppuccin-latte, catppuccin-frappe, catppuccin-macchiato, catppuccin-mocha
|
||||||
-- dracula
|
-- dracula
|
||||||
-- nightfox, dayfox, dawnfox, duskfox, nordfox, terafox, carbonfox
|
-- nightfox, dayfox, dawnfox, duskfox, nordfox, terafox, carbonfox
|
||||||
vim.g.pcode_colorscheme = "tokyonight"
|
vim.g.pcode_colorscheme = "onedark"
|
||||||
|
|
||||||
-- custom transparent mode
|
-- custom transparent mode
|
||||||
-- only support
|
-- only support
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
return {
|
return {
|
||||||
|
{ "navarasu/onedark.nvim", enabled = false },
|
||||||
{ "folke/tokyonight.nvim", enabled = false },
|
{ "folke/tokyonight.nvim", enabled = false },
|
||||||
{
|
{
|
||||||
"olimorris/onedarkpro.nvim",
|
"olimorris/onedarkpro.nvim",
|
||||||
|
@ -23,14 +24,15 @@ return {
|
||||||
colors = {
|
colors = {
|
||||||
onedark = {
|
onedark = {
|
||||||
green = "#99c379",
|
green = "#99c379",
|
||||||
gray = "#8094b4",
|
gray = "#abb2bf",
|
||||||
red = "#e06c75",
|
red = "#e06c75",
|
||||||
purple = "#c678dd",
|
purple = "#c678dd",
|
||||||
yellow = "#e5c07a",
|
yellow = "#e5c07b",
|
||||||
blue = "#61afef",
|
blue = "#61afef",
|
||||||
cyan = "#56b6c2",
|
cyan = "#56b6c2",
|
||||||
bg_statusline = "#282c34",
|
bg_statusline = "#282c34",
|
||||||
indentline = "#3b4261",
|
indentline = "#3b4261",
|
||||||
|
float_bg = "#282c34",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options = {
|
options = {
|
||||||
|
|
|
@ -28,7 +28,8 @@ end
|
||||||
|
|
||||||
local settings = {
|
local settings = {
|
||||||
ui = {
|
ui = {
|
||||||
border = "none",
|
-- border = "none",
|
||||||
|
border = { "╭", "─", "╮", "│", "╯", "─", "╰", "│" },
|
||||||
icons = {
|
icons = {
|
||||||
-- package_installed = "◍",
|
-- package_installed = "◍",
|
||||||
-- package_pending = "◍",
|
-- package_pending = "◍",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue