From 7f0e91017fbb36ce5fb2f37d16e42b6c05d9835a Mon Sep 17 00:00:00 2001 From: Delvin Yamoah Date: Thu, 16 Apr 2026 10:20:43 +0000 Subject: [PATCH] update --- init.lua | 19 +++++++++++++------ lazy-lock.json | 1 + lua/custom/plugins/kanagawa.lua | 2 +- lua/custom/plugins/osakajade.lua | 2 +- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/init.lua b/init.lua index b7c091af..48986332 100644 --- a/init.lua +++ b/init.lua @@ -3,10 +3,17 @@ vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' vim.opt.guicursor = '' --- vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }) --- vim.o.background = 'dark' --- vim.api.nvim_set_hl(0, 'SignColumn', { bg = 'none' }) +-- my personal color scheme setup +vim.cmd 'colorscheme quiet' +vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }) +vim.o.background = 'dark' +vim.api.nvim_set_hl(0, 'SignColumn', { bg = 'none' }) +vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none', fg = '#ffffff' }) +vim.api.nvim_set_hl(0, 'FloatBorder', { fg = 'none', bg = '#1e1e1e' }) +-- vim.api.nvim_set_hl(0, 'Pmenu', { bg = '#1e1e1e', fg = '#ffffff' }) +-- vim.api.nvim_set_hl(0, 'PmenuSel', { bg = '#3d59a1', fg = '#ffffff' }) +-- -- Set to true if you have a Nerd Font installed and selected in the terminal vim.g.have_nerd_font = true @@ -808,15 +815,15 @@ require('lazy').setup({ -- Simple and easy statusline. -- You could remove this setup call if you don't like it, -- and try some other statusline plugin - local statusline = require 'mini.statusline' + -- local statusline = require 'mini.statusline' -- set use_icons to true if you have a Nerd Font - statusline.setup { use_icons = vim.g.have_nerd_font } + -- statusline.setup { use_icons = vim.g.have_nerd_font } -- You can configure sections in the statusline by overriding their -- default behavior. For example, here we set the section for -- cursor location to LINE:COLUMN ---@diagnostic disable-next-line: duplicate-set-field - statusline.section_location = function() return '%2l:%-2v' end + -- statusline.section_location = function() return '%2l:%-2v' end -- ... and there is more! -- Check out: https://github.com/nvim-mini/mini.nvim diff --git a/lazy-lock.json b/lazy-lock.json index b1d8c0ae..26bc37fe 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -11,6 +11,7 @@ "harpoon": { "branch": "master", "commit": "1bc17e3e42ea3c46b33c0bbad6a880792692a1b3" }, "kanagawa.nvim": { "branch": "master", "commit": "aef7f5cec0a40dbe7f3304214850c472e2264b10" }, "lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" }, + "lualine.nvim": { "branch": "master", "commit": "a905eeebc4e63fdc48b5135d3bf8aea5618fb21c" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "a676ab7282da8d651e175118bcf54483ca11e46d" }, "mason-tool-installer.nvim": { "branch": "main", "commit": "443f1ef8b5e6bf47045cb2217b6f748a223cf7dc" }, "mason.nvim": { "branch": "main", "commit": "44d1e90e1f66e077268191e3ee9d2ac97cc18e65" }, diff --git a/lua/custom/plugins/kanagawa.lua b/lua/custom/plugins/kanagawa.lua index 2ebece24..380f7775 100644 --- a/lua/custom/plugins/kanagawa.lua +++ b/lua/custom/plugins/kanagawa.lua @@ -2,7 +2,7 @@ return { 'rebelot/kanagawa.nvim', priority = 1000, config = function() - require('kanagawa').setup { theme = 'dragon', transparent = false } + require('kanagawa').setup { theme = 'wave', transparent = true } vim.o.termguicolors = true -- vim.cmd 'colorscheme kanagawa-dragon' end, diff --git a/lua/custom/plugins/osakajade.lua b/lua/custom/plugins/osakajade.lua index acf44197..17e67e26 100644 --- a/lua/custom/plugins/osakajade.lua +++ b/lua/custom/plugins/osakajade.lua @@ -1,5 +1,5 @@ return { 'ReallySnazzy/osaka-jade-nvim', lazy = false, - init = function() vim.cmd.colorscheme 'osaka-jade' end, + -- init = function() vim.cmd.colorscheme 'osaka-jade' end, }