From 8205cd45d724a1d5da18ac28797e7007cac1b7f3 Mon Sep 17 00:00:00 2001 From: gbprod Date: Wed, 2 Oct 2024 13:54:29 +0200 Subject: [PATCH] fix codestyle --- lua/nord/config.lua | 8 ++++---- lua/nord/init.lua | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lua/nord/config.lua b/lua/nord/config.lua index 28db4cb..3f73fca 100644 --- a/lua/nord/config.lua +++ b/lua/nord/config.lua @@ -1,12 +1,12 @@ local config = {} local defaults = { - transparent = false, -- Enable this to disable setting the background color - terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim - diff = { mode = "bg" }, -- [bg|fg] + transparent = false, -- Enable this to disable setting the background color + terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim + diff = { mode = "bg" }, -- [bg|fg] search = { theme = "vim" }, -- [vim|vscode] borders = true, - errors = { mode = "bg" }, -- [bg|fg|none] + errors = { mode = "bg" }, -- [bg|fg|none] -- Value is any valid attr-list value for `:help nvim_set_hl` styles = { comments = { italic = true }, diff --git a/lua/nord/init.lua b/lua/nord/init.lua index 47c21bf..6f482ec 100644 --- a/lua/nord/init.lua +++ b/lua/nord/init.lua @@ -14,7 +14,7 @@ function nord.load(opts) require("nord.colors").daltonize(config.options.colorblind.severity) end - require('nord.config').options.on_colors(require('nord.colors').palette) + require("nord.config").options.on_colors(require("nord.colors").palette) vim.cmd([[ highlight clear ]])