Update color scheme to something with treesitter support
This commit is contained in:
2
init.lua
2
init.lua
@@ -8,4 +8,4 @@ vim.diagnostic.config({
|
||||
-- signs = true, -- Show icons in the gutter
|
||||
-- underline = true, -- Highlight the affected text
|
||||
})
|
||||
vim.cmd 'colorscheme atom-dark-256'
|
||||
--vim.cmd 'colorscheme atom-dark-256'
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"blink.cmp": { "branch": "main", "commit": "bae4bae0eedd1fa55f34b685862e94a222d5c6f8" },
|
||||
"darcula-solid.nvim": { "branch": "main", "commit": "d950b9ca20096313c435a93e57af7815766f3d3d" },
|
||||
"friendly-snippets": { "branch": "main", "commit": "572f5660cf05f8cd8834e096d7b4c921ba18e175" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
|
||||
"lush.nvim": { "branch": "main", "commit": "9c60ec2279d62487d942ce095e49006af28eed6e" },
|
||||
"mini.icons": { "branch": "main", "commit": "f9a177c11daa7829389b7b6eaaec8b8a5c47052d" },
|
||||
"mini.nvim": { "branch": "main", "commit": "d12b7c1b4dccc5245a3d2b7bc73da6dd910af2c0" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "d89f4891f0720cd2598e4bdd60010d8784b2ac8a" },
|
||||
|
||||
13
lua/plugins/colorscheme.lua
Normal file
13
lua/plugins/colorscheme.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
return {
|
||||
{
|
||||
"briones-gabriel/darcula-solid.nvim",
|
||||
dependencies = { 'rktjmp/lush.nvim' },
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd([[colorscheme darcula-solid]])
|
||||
vim.cmd([[set termguicolors]])
|
||||
end,
|
||||
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user