Cleaning
parent
f8e8a8c485
commit
38cc6b48cf
@ -1,101 +1,108 @@
|
|||||||
return {
|
return {
|
||||||
|
|
||||||
{ "tpope/vim-sleuth" },
|
{ "tpope/vim-sleuth" },
|
||||||
|
|
||||||
{
|
{
|
||||||
"catppuccin/nvim",
|
"catppuccin/nvim",
|
||||||
name = "catppuccin",
|
name = "catppuccin",
|
||||||
config = function()
|
config = function()
|
||||||
require("catppuccin").setup({
|
require("catppuccin").setup({
|
||||||
transparent_background = true,
|
transparent_background = true,
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
-- {
|
-- {
|
||||||
-- "f-person/auto-dark-mode.nvim",
|
-- "f-person/auto-dark-mode.nvim",
|
||||||
-- config = {
|
-- config = {
|
||||||
-- set_dark_mode = function()
|
-- set_dark_mode = function()
|
||||||
-- vim.api.nvim_set_option("background", "dark")
|
-- vim.api.nvim_set_option("background", "dark")
|
||||||
-- vim.cmd("colorscheme catppuccin")
|
-- vim.cmd("colorscheme catppuccin")
|
||||||
-- -- vim.cmd("colorscheme rose-pine")
|
-- -- vim.cmd("colorscheme rose-pine")
|
||||||
-- end,
|
-- end,
|
||||||
-- set_light_mode = function()
|
-- set_light_mode = function()
|
||||||
-- vim.api.nvim_set_option("background", "light")
|
-- vim.api.nvim_set_option("background", "light")
|
||||||
-- vim.cmd("colorscheme catppuccin")
|
-- vim.cmd("colorscheme catppuccin")
|
||||||
-- -- vim.cmd("colorscheme rose-pine")
|
-- -- vim.cmd("colorscheme rose-pine")
|
||||||
-- end,
|
-- end,
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
|
|
||||||
{
|
{
|
||||||
"LazyVim/LazyVim",
|
"LazyVim/LazyVim",
|
||||||
opts = {
|
opts = {
|
||||||
colorscheme = "catppuccin",
|
colorscheme = "catppuccin",
|
||||||
background_colour = "#000000",
|
background_colour = "#000000",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"nvim-orgmode/orgmode",
|
"nvim-orgmode/orgmode",
|
||||||
config = function()
|
config = function()
|
||||||
require("orgmode").setup_ts_grammar()
|
-- require("orgmode").setup_ts_grammar()
|
||||||
|
|
||||||
require("nvim-treesitter.configs").setup({
|
require("nvim-treesitter.configs").setup({
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
additional_vim_regex_highlighting = { "org" }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
|
additional_vim_regex_highlighting = { "org" }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
|
||||||
},
|
},
|
||||||
ensure_installed = { "org" }, -- Or run :TSUpdate org
|
ensure_installed = { "org" }, -- Or run :TSUpdate org
|
||||||
})
|
})
|
||||||
|
|
||||||
require("orgmode").setup({
|
require("orgmode").setup({
|
||||||
org_agenda_files = { "~/Sync/Notes/*" },
|
org_agenda_files = { "~/Sync/Notes/*" },
|
||||||
org_default_notes_file = "~/Sync/Notes/Main.org",
|
org_default_notes_file = "~/Sync/Notes/Main.org",
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "dhruvasagar/vim-table-mode" },
|
{ "dhruvasagar/vim-table-mode" },
|
||||||
|
|
||||||
{
|
{
|
||||||
"akinsho/toggleterm.nvim",
|
"akinsho/toggleterm.nvim",
|
||||||
version = "*",
|
version = "*",
|
||||||
config = true,
|
config = true,
|
||||||
keys = {
|
keys = {
|
||||||
{ [[<C-\>]] },
|
{ [[<C-\>]] },
|
||||||
{
|
{
|
||||||
"<leader>TT",
|
"<leader>TT",
|
||||||
"<cmd>ToggleTerm direction=horizontal<cr>",
|
"<cmd>ToggleTerm direction=horizontal<cr>",
|
||||||
desc = "Open a horizontal terminal",
|
desc = "Open a horizontal terminal",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"<leader>TV",
|
"<leader>TV",
|
||||||
"<cmd>ToggleTerm size=60 direction=vertical<cr>",
|
"<cmd>ToggleTerm size=60 direction=vertical<cr>",
|
||||||
desc = "Open a vertical terminal",
|
desc = "Open a vertical terminal",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"christoomey/vim-tmux-navigator",
|
"christoomey/vim-tmux-navigator",
|
||||||
cmd = {
|
cmd = {
|
||||||
"TmuxNavigateLeft",
|
"TmuxNavigateLeft",
|
||||||
"TmuxNavigateDown",
|
"TmuxNavigateDown",
|
||||||
"TmuxNavigateUp",
|
"TmuxNavigateUp",
|
||||||
"TmuxNavigateRight",
|
"TmuxNavigateRight",
|
||||||
"TmuxNavigatePrevious",
|
"TmuxNavigatePrevious",
|
||||||
},
|
},
|
||||||
keys = {
|
keys = {
|
||||||
{ "<c-h>", "<cmd><C-U>TmuxNavigateLeft<cr>" },
|
{ "<c-h>", "<cmd><C-U>TmuxNavigateLeft<cr>" },
|
||||||
{ "<c-j>", "<cmd><C-U>TmuxNavigateDown<cr>" },
|
{ "<c-j>", "<cmd><C-U>TmuxNavigateDown<cr>" },
|
||||||
{ "<c-k>", "<cmd><C-U>TmuxNavigateUp<cr>" },
|
{ "<c-k>", "<cmd><C-U>TmuxNavigateUp<cr>" },
|
||||||
{ "<c-l>", "<cmd><C-U>TmuxNavigateRight<cr>" },
|
{ "<c-l>", "<cmd><C-U>TmuxNavigateRight<cr>" },
|
||||||
{ "<c-\\>", "<cmd><C-U>TmuxNavigatePrevious<cr>" },
|
{ "<c-\\>", "<cmd><C-U>TmuxNavigatePrevious<cr>" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
-- {
|
{ "lukas-reineke/headlines.nvim", opts = { org = { fat_headlines = false } } },
|
||||||
-- "https://git.sr.ht/~soywod/himalaya-vim",
|
|
||||||
-- },
|
{
|
||||||
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
opts = function(_, opts)
|
||||||
|
vim.list_extend(opts.ensure_installed, {
|
||||||
|
"php",
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
@ -1,315 +0,0 @@
|
|||||||
color_schemes:
|
|
||||||
|
|
||||||
latte: &latte
|
|
||||||
|
|
||||||
# Default colors
|
|
||||||
primary:
|
|
||||||
background: '#eff1f5' # base
|
|
||||||
foreground: '#4c4f69' # text
|
|
||||||
# Bright and dim foreground colors
|
|
||||||
dim_foreground: '#4c4f69' # text
|
|
||||||
bright_foreground: '#4c4f69' # text
|
|
||||||
|
|
||||||
# Cursor colors
|
|
||||||
cursor:
|
|
||||||
text: '#eff1f5' # base
|
|
||||||
cursor: '#dc8a78' # rosewater
|
|
||||||
vi_mode_cursor:
|
|
||||||
text: '#eff1f5' # base
|
|
||||||
cursor: '#7287fd' # lavender
|
|
||||||
|
|
||||||
# Search colors
|
|
||||||
search:
|
|
||||||
matches:
|
|
||||||
foreground: '#eff1f5' # base
|
|
||||||
background: '#6c6f85' # subtext0
|
|
||||||
focused_match:
|
|
||||||
foreground: '#eff1f5' # base
|
|
||||||
background: '#40a02b' # green
|
|
||||||
bar:
|
|
||||||
foreground: '#eff1f5' # base
|
|
||||||
background: '#6c6f85' # subtext0
|
|
||||||
|
|
||||||
# Keyboard regex hints
|
|
||||||
hints:
|
|
||||||
start:
|
|
||||||
foreground: '#eff1f5' # base
|
|
||||||
background: '#df8e1d' # yellow
|
|
||||||
end:
|
|
||||||
foreground: '#eff1f5' # base
|
|
||||||
background: '#6c6f85' # subtext0
|
|
||||||
|
|
||||||
# Selection colors
|
|
||||||
selection:
|
|
||||||
text: '#eff1f5' # base
|
|
||||||
background: '#dc8a78' # rosewater
|
|
||||||
|
|
||||||
# Normal colors
|
|
||||||
normal:
|
|
||||||
black: '#4C4F69' # text
|
|
||||||
red: '#D20F39' # red
|
|
||||||
green: '#40A02B' # green
|
|
||||||
yellow: '#DF8E1D' # yellow
|
|
||||||
blue: '#1E66F5' # blue
|
|
||||||
magenta: '#EA76CB' # pink
|
|
||||||
cyan: '#179299' # teal
|
|
||||||
white: '#ACB0BE' # surface2
|
|
||||||
|
|
||||||
# Bright colors
|
|
||||||
bright:
|
|
||||||
black: '#4C4F69' # text
|
|
||||||
red: '#D20F39' # red
|
|
||||||
green: '#40A02B' # green
|
|
||||||
yellow: '#DF8E1D' # yellow
|
|
||||||
blue: '#1E66F5' # blue
|
|
||||||
magenta: '#EA76CB' # pink
|
|
||||||
cyan: '#179299' # teal
|
|
||||||
white: '#ACB0BE' # surface2
|
|
||||||
|
|
||||||
# Dim colors
|
|
||||||
dim:
|
|
||||||
black: '#4C4F69' # text
|
|
||||||
red: '#D20F39' # red
|
|
||||||
green: '#40A02B' # green
|
|
||||||
yellow: '#DF8E1D' # yellow
|
|
||||||
blue: '#1E66F5' # blue
|
|
||||||
magenta: '#EA76CB' # pink
|
|
||||||
cyan: '#179299' # teal
|
|
||||||
white: '#ACB0BE' # surface2
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
frappe: &frappe
|
|
||||||
|
|
||||||
# Default colors
|
|
||||||
primary:
|
|
||||||
background: '#303446' # base
|
|
||||||
foreground: '#c6d0f5' # text
|
|
||||||
# Bright and dim foreground colors
|
|
||||||
dim_foreground: '#c6d0f5' # text
|
|
||||||
bright_foreground: '#c6d0f5' # text
|
|
||||||
|
|
||||||
# Cursor colors
|
|
||||||
cursor:
|
|
||||||
text: '#303446' # base
|
|
||||||
cursor: '#f2d5cf' # rosewater
|
|
||||||
vi_mode_cursor:
|
|
||||||
text: '#303446' # base
|
|
||||||
cursor: '#babbf1' # lavender
|
|
||||||
|
|
||||||
# Search colors
|
|
||||||
search:
|
|
||||||
matches:
|
|
||||||
foreground: '#303446' # base
|
|
||||||
background: '#a5adce' # subtext0
|
|
||||||
focused_match:
|
|
||||||
foreground: '#303446' # base
|
|
||||||
background: '#a6d189' # green
|
|
||||||
bar:
|
|
||||||
foreground: '#303446' # base
|
|
||||||
background: '#a5adce' # subtext0
|
|
||||||
|
|
||||||
# Keyboard regex hints
|
|
||||||
hints:
|
|
||||||
start:
|
|
||||||
foreground: '#303446' # base
|
|
||||||
background: '#e5c890' # yellow
|
|
||||||
end:
|
|
||||||
foreground: '#303446' # base
|
|
||||||
background: '#a5adce' # subtext0
|
|
||||||
|
|
||||||
# Selection colors
|
|
||||||
selection:
|
|
||||||
text: '#303446' # base
|
|
||||||
background: '#f2d5cf' # rosewater
|
|
||||||
|
|
||||||
# Normal colors
|
|
||||||
normal:
|
|
||||||
black: '#51576d' # surface1
|
|
||||||
red: '#e78284' # red
|
|
||||||
green: '#a6d189' # green
|
|
||||||
yellow: '#e5c890' # yellow
|
|
||||||
blue: '#8caaee' # blue
|
|
||||||
magenta: '#f4b8e4' # pink
|
|
||||||
cyan: '#81c8be' # teal
|
|
||||||
white: '#b5bfe2' # subtext1
|
|
||||||
|
|
||||||
# Bright colors
|
|
||||||
bright:
|
|
||||||
black: '#51576d' # surface1
|
|
||||||
red: '#e78284' # red
|
|
||||||
green: '#a6d189' # green
|
|
||||||
yellow: '#e5c890' # yellow
|
|
||||||
blue: '#8caaee' # blue
|
|
||||||
magenta: '#f4b8e4' # pink
|
|
||||||
cyan: '#81c8be' # teal
|
|
||||||
white: '#b5bfe2' # subtext1
|
|
||||||
|
|
||||||
# Dim colors
|
|
||||||
dim:
|
|
||||||
black: '#51576d' # surface1
|
|
||||||
red: '#e78284' # red
|
|
||||||
green: '#a6d189' # green
|
|
||||||
yellow: '#e5c890' # yellow
|
|
||||||
blue: '#8caaee' # blue
|
|
||||||
magenta: '#f4b8e4' # pink
|
|
||||||
cyan: '#81c8be' # teal
|
|
||||||
white: '#b5bfe2' # subtext1
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
macchiato: &macchiato
|
|
||||||
|
|
||||||
# Default colors
|
|
||||||
primary:
|
|
||||||
background: '#24273a' # base
|
|
||||||
foreground: '#cad3f5' # text
|
|
||||||
# Bright and dim foreground colors
|
|
||||||
dim_foreground: '#cad3f5' # text
|
|
||||||
bright_foreground: '#cad3f5' # text
|
|
||||||
|
|
||||||
# Cursor colors
|
|
||||||
cursor:
|
|
||||||
text: '#24273a' # base
|
|
||||||
cursor: '#f4dbd6' # rosewater
|
|
||||||
vi_mode_cursor:
|
|
||||||
text: '#24273a' # base
|
|
||||||
cursor: '#b7bdf8' # lavender
|
|
||||||
|
|
||||||
# Search colors
|
|
||||||
search:
|
|
||||||
matches:
|
|
||||||
foreground: '#24273a' # base
|
|
||||||
background: '#a5adcb' # subtext0
|
|
||||||
focused_match:
|
|
||||||
foreground: '#24273a' # base
|
|
||||||
background: '#a6da95' # green
|
|
||||||
bar:
|
|
||||||
foreground: '#24273a' # base
|
|
||||||
background: '#a5adcb' # subtext0
|
|
||||||
|
|
||||||
# Keyboard regex hints
|
|
||||||
hints:
|
|
||||||
start:
|
|
||||||
foreground: '#24273a' # base
|
|
||||||
background: '#eed49f' # yellow
|
|
||||||
end:
|
|
||||||
foreground: '#24273a' # base
|
|
||||||
background: '#a5adcb' # subtext0
|
|
||||||
|
|
||||||
# Selection colors
|
|
||||||
selection:
|
|
||||||
text: '#24273a' # base
|
|
||||||
background: '#f4dbd6' # rosewater
|
|
||||||
|
|
||||||
# Normal colors
|
|
||||||
normal:
|
|
||||||
black: '#494d64' # surface1
|
|
||||||
red: '#ed8796' # red
|
|
||||||
green: '#a6da95' # green
|
|
||||||
yellow: '#eed49f' # yellow
|
|
||||||
blue: '#8aadf4' # blue
|
|
||||||
magenta: '#f5bde6' # pink
|
|
||||||
cyan: '#8bd5ca' # teal
|
|
||||||
white: '#b8c0e0' # subtext1
|
|
||||||
|
|
||||||
# Bright colors
|
|
||||||
bright:
|
|
||||||
black: '#494d64' # surface1
|
|
||||||
red: '#ed8796' # red
|
|
||||||
green: '#a6da95' # green
|
|
||||||
yellow: '#eed49f' # yellow
|
|
||||||
blue: '#8aadf4' # blue
|
|
||||||
magenta: '#f5bde6' # pink
|
|
||||||
cyan: '#8bd5ca' # teal
|
|
||||||
white: '#b8c0e0' # subtext1
|
|
||||||
|
|
||||||
# Dim colors
|
|
||||||
dim:
|
|
||||||
black: '#494d64' # surface1
|
|
||||||
red: '#ed8796' # red
|
|
||||||
green: '#a6da95' # green
|
|
||||||
yellow: '#eed49f' # yellow
|
|
||||||
blue: '#8aadf4' # blue
|
|
||||||
magenta: '#f5bde6' # pink
|
|
||||||
cyan: '#8bd5ca' # teal
|
|
||||||
white: '#b8c0e0' # subtext1
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
mocha: &mocha
|
|
||||||
|
|
||||||
# Default colors
|
|
||||||
primary:
|
|
||||||
background: '#1e1e2e' # base
|
|
||||||
foreground: '#cdd6f4' # text
|
|
||||||
# Bright and dim foreground colors
|
|
||||||
dim_foreground: '#cdd6f4' # text
|
|
||||||
bright_foreground: '#cdd6f4' # text
|
|
||||||
|
|
||||||
# Cursor colors
|
|
||||||
cursor:
|
|
||||||
text: '#1e1e2e' # base
|
|
||||||
cursor: '#f5e0dc' # rosewater
|
|
||||||
vi_mode_cursor:
|
|
||||||
text: '#1e1e2e' # base
|
|
||||||
cursor: '#b4befe' # lavender
|
|
||||||
|
|
||||||
# Search colors
|
|
||||||
search:
|
|
||||||
matches:
|
|
||||||
foreground: '#1e1e2e' # base
|
|
||||||
background: '#a6adc8' # subtext0
|
|
||||||
focused_match:
|
|
||||||
foreground: '#1e1e2e' # base
|
|
||||||
background: '#a6e3a1' # green
|
|
||||||
bar:
|
|
||||||
foreground: '#1e1e2e' # base
|
|
||||||
background: '#a6adc8' # subtext0
|
|
||||||
|
|
||||||
# Keyboard regex hints
|
|
||||||
hints:
|
|
||||||
start:
|
|
||||||
foreground: '#1e1e2e' # base
|
|
||||||
background: '#f9e2af' # yellow
|
|
||||||
end:
|
|
||||||
foreground: '#1e1e2e' # base
|
|
||||||
background: '#a6adc8' # subtext0
|
|
||||||
|
|
||||||
# Selection colors
|
|
||||||
selection:
|
|
||||||
text: '#1e1e2e' # base
|
|
||||||
background: '#f5e0dc' # rosewater
|
|
||||||
|
|
||||||
# Normal colors
|
|
||||||
normal:
|
|
||||||
black: '#45475a' # surface1
|
|
||||||
red: '#f38ba8' # red
|
|
||||||
green: '#a6e3a1' # green
|
|
||||||
yellow: '#f9e2af' # yellow
|
|
||||||
blue: '#89b4fa' # blue
|
|
||||||
magenta: '#f5c2e7' # pink
|
|
||||||
cyan: '#94e2d5' # teal
|
|
||||||
white: '#bac2de' # subtext1
|
|
||||||
|
|
||||||
# Bright colors
|
|
||||||
bright:
|
|
||||||
black: '#45475a' # surface1
|
|
||||||
red: '#f38ba8' # red
|
|
||||||
green: '#a6e3a1' # green
|
|
||||||
yellow: '#f9e2af' # yellow
|
|
||||||
blue: '#89b4fa' # blue
|
|
||||||
magenta: '#f5c2e7' # pink
|
|
||||||
cyan: '#94e2d5' # teal
|
|
||||||
white: '#bac2de' # subtext1
|
|
||||||
|
|
||||||
# Dim colors
|
|
||||||
dim:
|
|
||||||
black: '#45475a' # surface1
|
|
||||||
red: '#f38ba8' # red
|
|
||||||
green: '#a6e3a1' # green
|
|
||||||
yellow: '#f9e2af' # yellow
|
|
||||||
blue: '#89b4fa' # blue
|
|
||||||
magenta: '#f5c2e7' # pink
|
|
||||||
cyan: '#94e2d5' # teal
|
|
||||||
white: '#bac2de' # subtext1
|
|
@ -1,18 +0,0 @@
|
|||||||
color listnormal color15 default
|
|
||||||
color listnormal_unread color2 default
|
|
||||||
color listfocus_unread color2 color0
|
|
||||||
color listfocus default color0
|
|
||||||
color background default default
|
|
||||||
color article default default
|
|
||||||
color end-of-text-marker color8 default
|
|
||||||
color info color4 color8
|
|
||||||
color hint-separator default color8
|
|
||||||
color hint-description default color8
|
|
||||||
color title color14 color8
|
|
||||||
|
|
||||||
highlight article "^(Feed|Title|Author|Link|Date): .+" color4 default bold
|
|
||||||
highlight article "^(Feed|Title|Author|Link|Date):" color14 default bold
|
|
||||||
|
|
||||||
highlight article "\\((link|image|video)\\)" color8 default
|
|
||||||
highlight article "https?://[^ ]+" color4 default
|
|
||||||
highlight article "\[[0-9]+\]" color6 default bold
|
|
Loading…
Reference in New Issue