diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-05-26 13:26:57 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-05-26 13:37:24 +0200 |
commit | 50053eb550b160ddd2e953894398f5e23f0fd9df (patch) | |
tree | 1bc0989bc1e419c507886d2a5081cfde277c217d /lua | |
parent | 1d58568902d269ad74a7047a9227ec857c6e7937 (diff) |
add nord colorscheme
customized to have everything in bold
Diffstat (limited to 'lua')
-rw-r--r-- | lua/user/lazy.lua | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lua/user/lazy.lua b/lua/user/lazy.lua index 8671a69..afac170 100644 --- a/lua/user/lazy.lua +++ b/lua/user/lazy.lua @@ -43,6 +43,42 @@ require("lazy").setup({ -- kind icons "onsails/lspkind.nvim", }, + + { + "gbprod/nord.nvim", + lazy = false, + priority = 1000, + config = function() + require("nord").setup({ + transparent = false, + terminal_colors = true, -- `:terminal` + diff = { mode = "bg" }, + borders = true, + -- values : [bg|fg|none] + errors = { mode = "bg" }, + -- values : [vim|vscode] + search = { theme = "vim" }, + styles = { + -- `:help nvim_set_hl` + comments = { italic = true }, + keywords = { bold = true }, + functions = { bold = true }, + variables = { bold = true }, + -- To customize lualine/bufferline + bufferline = { + current = {}, + modified = { italic = true }, + }, + }, + }) + vim.cmd.colorscheme("nord") + end, + }, + install = { + colorscheme = { "nord" }, + }, + + -- Adds git related signs to the gutter, as well as utilities for managing changes "lewis6991/gitsigns.nvim", |