moves from plugin theme to single lua file
This commit is contained in:
parent
b39c6faf50
commit
fdd35fa934
7 changed files with 329 additions and 65 deletions
|
|
@ -18,6 +18,8 @@ vim.opt.rtp:prepend(lazypath)
|
|||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
|
||||
vim.cmd([[colorscheme winterly]])
|
||||
|
||||
local options = {
|
||||
backup = false, -- creates a backup file
|
||||
clipboard = "unnamedplus", -- allows neovim to access the system clipboard
|
||||
|
|
@ -72,7 +74,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 = { "rose-pine" } },
|
||||
install = { colorscheme = { "winterly" } },
|
||||
-- automatically check for plugin updates
|
||||
checker = { enabled = false },
|
||||
})
|
||||
|
|
|
|||
33
modules/nvim/config/lua/dnsc/palette.lua
Normal file
33
modules/nvim/config/lua/dnsc/palette.lua
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
return {
|
||||
fg = "#ffffff",
|
||||
fg_alt = "#bf8a9f",
|
||||
fg_dim = "#807c9f",
|
||||
bg = "#0f0b15",
|
||||
bg_secondary = "#1d202f",
|
||||
grey = "#807c9f",
|
||||
grey_bright = "#807c9f",
|
||||
red = "#f47359",
|
||||
red_bright = "#ff6a7a",
|
||||
red_subtle_bg = "#67182f",
|
||||
green = "#29a444",
|
||||
green_bright = "#00a392",
|
||||
green_subtle_bg = "#10452f",
|
||||
yellow = "#b58a52",
|
||||
yellow_bright = "#df9080",
|
||||
yellow_brighter = "#FCC1B6",
|
||||
yellow_subtle_bg = "#54362a",
|
||||
blue = "#3f95f6",
|
||||
blue_bright = "#029fff",
|
||||
blue_subtle_bg = "#2a346e",
|
||||
blue_subtle_dark_bg = "#003045",
|
||||
magenta = "#d369af",
|
||||
magenta_bright = "#af85ea",
|
||||
magenta_brighter = "#c57faf",
|
||||
magenta_subtle_bg = "#572454",
|
||||
magenta_subtle_bg_darker = "#331531",
|
||||
cyan = "#4fbaef",
|
||||
cyan_bright = "#35afbf",
|
||||
cyan_subtle_bg = "#133d56",
|
||||
silver = "#b8c6d5",
|
||||
silver_bright = "#ffffff",
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue