From 42a0af7cb3c790c60b3bfad37bf78dc618bcc267 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Sat, 17 Jan 2026 15:32:45 +0100 Subject: [PATCH] Some tweaking --- .config/nvim/lua/config/lazy.lua | 14 ++++++++++++-- .config/nvim/lua/plugins/colorscheme.lua | 9 +++++---- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index 80b2a17..fd6b138 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -21,7 +21,17 @@ vim.opt.rtp:prepend(lazypath) vim.g.mapleader = "," vim.g.maplocalleader = "," -vim.wo.number = true +vim.opt.number = true +vim.opt.relativenumber = false -- relative line numbers +vim.opt.tabstop = 4 -- tab width +vim.opt.shiftwidth = 4 -- indent width +vim.opt.expandtab = true -- spaces instead of tabs +vim.opt.smartindent = true -- smart indentation +vim.opt.termguicolors = true -- true color support +vim.opt.clipboard = "unnamedplus" -- system clipboard + +vim.cmd.colorscheme 'kanagawa-dragon' +vim.opt.smoothscroll = true -- Setup lazy.nvim require("lazy").setup({ @@ -31,7 +41,7 @@ require("lazy").setup({ }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "kanagawa" } }, + install = { colorscheme = { "kanagawa-dragon" } }, -- automatically check for plugin updates checker = { enabled = true }, }) diff --git a/.config/nvim/lua/plugins/colorscheme.lua b/.config/nvim/lua/plugins/colorscheme.lua index bf39614..d860af9 100644 --- a/.config/nvim/lua/plugins/colorscheme.lua +++ b/.config/nvim/lua/plugins/colorscheme.lua @@ -1,8 +1,9 @@ return { - 'folke/tokyonight.nvim', - 'rebelot/kanagawa.nvim', - - 'Shatur/neovim-ayu', + 'Shatur/neovim-ayu', + config = function() + -- load the colorscheme + vim.cmd([[colorscheme kanagawa-dragon]]) + end, }