From 0c1cf2922030d577e5282d583401b5772adade3a Mon Sep 17 00:00:00 2001 From: Delvin Yamoah Date: Fri, 20 Mar 2026 21:55:06 +0000 Subject: [PATCH] update --- init.lua | 32 +++++++++++++++--------------- lazy-lock.json | 1 + lua/custom/plugins/black-metal.lua | 2 +- lua/custom/plugins/kanagawa.lua | 9 +++++++++ 4 files changed, 27 insertions(+), 17 deletions(-) create mode 100644 lua/custom/plugins/kanagawa.lua diff --git a/init.lua b/init.lua index ccd39096..247b6a26 100644 --- a/init.lua +++ b/init.lua @@ -3,7 +3,7 @@ vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' vim.opt.guicursor = '' - +-- vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }) -- Set to true if you have a Nerd Font installed and selected in the terminal vim.g.have_nerd_font = false @@ -754,21 +754,21 @@ require('lazy').setup({ -- change the command in the config to whatever the name of that colorscheme is. -- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. - 'folke/tokyonight.nvim', - priority = 1000, -- Make sure to load this before all the other start plugins. - config = function() - ---@diagnostic disable-next-line: missing-fields - require('tokyonight').setup { - styles = { - comments = { italic = false }, -- Disable italics in comments - }, - } - - -- Load the colorscheme here. - -- Like many other themes, this one has different styles, and you could load - -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' - end, + -- 'folke/tokyonight.nvim', + -- priority = 1000, -- Make sure to load this before all the other start plugins. + -- config = function() + -- ---@diagnostic disable-next-line: missing-fields + -- require('tokyonight').setup { + -- styles = { + -- comments = { italic = false }, -- Disable italics in comments + -- }, + -- } + -- + -- -- Load the colorscheme here. + -- -- Like many other themes, this one has different styles, and you could load + -- -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. + -- vim.cmd.colorscheme 'tokyonight-night' + -- end, }, -- Highlight todo, notes, etc in comments diff --git a/lazy-lock.json b/lazy-lock.json index 96881d25..d5ccf4bd 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -8,6 +8,7 @@ "gitsigns.nvim": { "branch": "main", "commit": "7c4faa3540d0781a28588cafbd4dd187a28ac6e3" }, "guess-indent.nvim": { "branch": "main", "commit": "84a4987ff36798c2fc1169cbaff67960aed9776f" }, "harpoon": { "branch": "master", "commit": "1bc17e3e42ea3c46b33c0bbad6a880792692a1b3" }, + "kanagawa.nvim": { "branch": "master", "commit": "aef7f5cec0a40dbe7f3304214850c472e2264b10" }, "lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "a676ab7282da8d651e175118bcf54483ca11e46d" }, "mason-tool-installer.nvim": { "branch": "main", "commit": "443f1ef8b5e6bf47045cb2217b6f748a223cf7dc" }, diff --git a/lua/custom/plugins/black-metal.lua b/lua/custom/plugins/black-metal.lua index 4089dc1b..d7387ffa 100644 --- a/lua/custom/plugins/black-metal.lua +++ b/lua/custom/plugins/black-metal.lua @@ -7,7 +7,7 @@ return { require('black-metal').setup { -- optional configuration here } - -- require("black-metal").load() + -- require('black-metal').load() -- vim.cmd 'colorscheme burzum' end, } diff --git a/lua/custom/plugins/kanagawa.lua b/lua/custom/plugins/kanagawa.lua new file mode 100644 index 00000000..7c719034 --- /dev/null +++ b/lua/custom/plugins/kanagawa.lua @@ -0,0 +1,9 @@ +return { + 'rebelot/kanagawa.nvim', + priority = 1000, + config = function() + require('kanagawa').setup { theme = 'wave', transparent = false } + vim.o.termguicolors = true + vim.cmd 'colorscheme kanagawa-dragon' + end, +}