mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-07-01 23:19:25 +00:00
[neovim/kitty] Add github color scheme
This commit is contained in:
@ -43,10 +43,27 @@ lazy.setup({
|
||||
colors.gitSigns.change = "#779be9"
|
||||
end,
|
||||
})
|
||||
|
||||
vim.cmd([[colorscheme tokyonight]])
|
||||
end,
|
||||
},
|
||||
{
|
||||
"projekt0n/github-nvim-theme",
|
||||
lazy = false,
|
||||
priorrity = 1000,
|
||||
version = "v0.0.x",
|
||||
config = function()
|
||||
require("github-theme").setup({
|
||||
colors = {
|
||||
error = "#dd6861",
|
||||
-- fg = "#c8d3f5",
|
||||
-- syntax = {
|
||||
-- comment = "#636da6",
|
||||
-- },
|
||||
},
|
||||
})
|
||||
vim.cmd([[colorscheme github_dimmed]])
|
||||
end,
|
||||
},
|
||||
|
||||
-- Plugins
|
||||
{ "nvim-lua/plenary.nvim", lazy = true },
|
||||
{ "echasnovski/mini.starter", lazy = "VimEnter", version = "*" },
|
||||
|
@ -7,6 +7,7 @@ vim.g.neo_tree_remove_legacy_commands = true
|
||||
|
||||
neotree.setup({
|
||||
close_if_last_window = true,
|
||||
open_files_do_not_replace_filetypes = { "terminal", "trouble", "qf", "starter" }, -- when opening files, do not use windows containing these filetypes
|
||||
popup_border_style = "rounded",
|
||||
default_component_configs = {
|
||||
indent = {
|
||||
|
Reference in New Issue
Block a user