Compare commits
3 Commits
7ad9d894bd
...
0713f92ab5
| Author | SHA1 | Date | |
|---|---|---|---|
| 0713f92ab5 | |||
| a6260782eb | |||
| c0565da4c8 |
@@ -1,3 +1,5 @@
|
||||
-- bootstrap lazy.nvim, LazyVim and your plugins
|
||||
require("config.lazy")
|
||||
vim.lsp.enable("gopls")
|
||||
|
||||
vim.cmd("colorscheme cuddlefish")
|
||||
|
||||
@@ -8,6 +8,9 @@
|
||||
"catppuccin": { "branch": "main", "commit": "beaf41a30c26fd7d6c386d383155cbd65dd554cd" },
|
||||
"conform.nvim": { "branch": "master", "commit": "8314f4c9e205e7f30b62147069729f9a1227d8bf" },
|
||||
"crates.nvim": { "branch": "main", "commit": "ac9fa498a9edb96dc3056724ff69d5f40b898453" },
|
||||
"cuddlefish.nvim": { "branch": "main", "commit": "8381e244350e03b702422da97587d027ea1708fb" },
|
||||
"cyberdream.nvim": { "branch": "main", "commit": "7464438b099c0ebcd42c4b6dd9abbd6ed93cb7f8" },
|
||||
"dracula.nvim": { "branch": "master", "commit": "7fadc372bbb9638c19a18c2497167d854cdd6a19" },
|
||||
"dressing.nvim": { "branch": "master", "commit": "2d7c2db2507fa3c4956142ee607431ddb2828639" },
|
||||
"flash.nvim": { "branch": "main", "commit": "fcea7ff883235d9024dc41e638f164a450c14ca2" },
|
||||
"friendly-snippets": { "branch": "main", "commit": "572f5660cf05f8cd8834e096d7b4c921ba18e175" },
|
||||
|
||||
27
nvim/.config/nvim/lua/plugins/theme-cuddlefish.lua
Normal file
27
nvim/.config/nvim/lua/plugins/theme-cuddlefish.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
-- lazy.nvim
|
||||
return {
|
||||
"comfysage/cuddlefish.nvim",
|
||||
config = function()
|
||||
require("cuddlefish").setup({
|
||||
theme = {
|
||||
accent = "pink",
|
||||
},
|
||||
editor = {
|
||||
transparent_background = false,
|
||||
},
|
||||
style = {
|
||||
tabline = { "reverse" },
|
||||
search = { "italic", "reverse" },
|
||||
incsearch = { "italic", "reverse" },
|
||||
types = { "italic" },
|
||||
keyword = { "italic" },
|
||||
comment = { "italic" },
|
||||
},
|
||||
overrides = function(colors)
|
||||
return {}
|
||||
end,
|
||||
})
|
||||
|
||||
vim.cmd.colorscheme([[cuddlefish]])
|
||||
end,
|
||||
}
|
||||
5
nvim/.config/nvim/lua/plugins/theme-cyberdream.lua
Normal file
5
nvim/.config/nvim/lua/plugins/theme-cyberdream.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
"scottmckendry/cyberdream.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
}
|
||||
Reference in New Issue
Block a user