From 7211ad058f9f95d1bf962b7e5a44338a56f6fd4e Mon Sep 17 00:00:00 2001 From: Benjamin Kyd Date: Fri, 28 Apr 2023 16:37:03 +0100 Subject: [PATCH] kanagawa update --- common/.config/nvim/lua/plugins.lua | 2 +- .../.config/nvim/lua/post-plugin-basics.lua | 36 +++++++++---------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/common/.config/nvim/lua/plugins.lua b/common/.config/nvim/lua/plugins.lua index 3ceb0a1..123d3ba 100644 --- a/common/.config/nvim/lua/plugins.lua +++ b/common/.config/nvim/lua/plugins.lua @@ -14,7 +14,7 @@ local packer = require('packer').startup(function(use) use 'wbthomason/packer.nvim' -- colourscheme - use { 'rebelot/kanagawa.nvim', commit = '4c8d487' } + use { 'rebelot/kanagawa.nvim' } use 'nvim-tree/nvim-web-devicons' -- QUALITY OF LIFE INTEGRATIONS diff --git a/common/.config/nvim/lua/post-plugin-basics.lua b/common/.config/nvim/lua/post-plugin-basics.lua index da96857..fdae417 100644 --- a/common/.config/nvim/lua/post-plugin-basics.lua +++ b/common/.config/nvim/lua/post-plugin-basics.lua @@ -20,24 +20,24 @@ end, { desc = "Toggle Zen Mode" }) vim.o.termguicolors = true vim.o.background = 'dark' -require('kanagawa').setup({ - undercurl = true, -- enable undercurls - commentStyle = { italic = true }, - functionStyle = {}, - keywordStyle = { italic = true}, - statementStyle = { bold = true }, - typeStyle = {}, - variablebuiltinStyle = { italic = true}, - transparent = false, -- do not set background color - dimInactive = false, -- dim inactive window `:h hl-NormalNC` - globalStatus = true, -- adjust window separators highlight for laststatus=3 - terminalColors = true, -- define vim.g.terminal_color_{0,17} - colors = { - bg = '#22222d', - }, - overrides = {}, - theme = "default" -- Load "default" theme or the experimental "light" theme -}) +--require('kanagawa').setup({ + --undercurl = true, -- enable undercurls + --commentStyle = { italic = true }, + --functionStyle = {}, + --keywordStyle = { italic = true}, + --statementStyle = { bold = true }, + --typeStyle = {}, + --variablebuiltinStyle = { italic = true}, + --transparent = false, -- do not set background color + --dimInactive = false, -- dim inactive window `:h hl-NormalNC` + --globalStatus = true, -- adjust window separators highlight for laststatus=3 + --terminalColors = true, -- define vim.g.terminal_color_{0,17} + --colors = { + --bg = '#22222d', + --}, + --overrides = {}, + --theme = "default" -- Load "default" theme or the experimental "light" theme +--}) -- setup must be called before loading vim.cmd("colorscheme kanagawa")