wip
This commit is contained in:
parent
2413eb3860
commit
923da56ca8
4 changed files with 46 additions and 27 deletions
2
init.lua
2
init.lua
|
@ -9,5 +9,5 @@ else
|
|||
-- │ themes are under ./lua/pika/plugins/colorschemes.lua │
|
||||
-- ╰──────────────────────────────────────────────────────╯
|
||||
|
||||
vim.cmd.colorscheme("nekonight-moon")
|
||||
vim.cmd.colorscheme("tokyodark")
|
||||
end
|
||||
|
|
|
@ -2,24 +2,27 @@ return {
|
|||
{ "rose-pine/neovim", name = "rose-pine" },
|
||||
{ "L-Colombo/oldschool.nvim", config = "true" },
|
||||
{ "ptdewey/darkearth-nvim" },
|
||||
-- { "catppuccin/nvim", name = "catppuccin" },
|
||||
-- { "folke/tokyonight.nvim" },
|
||||
-- { "fynnfluegge/monet.nvim", name = "monet" },
|
||||
-- { "AlexvZyl/nordic.nvim" },
|
||||
-- { "eldritch-theme/eldritch.nvim" },
|
||||
-- { "EdenEast/nightfox.nvim" },
|
||||
-- { "DanWlker/primeppuccin", name = "primeppuccin" },
|
||||
-- { "sainnhe/sonokai" },
|
||||
-- {
|
||||
-- "ferdinandrau/lavish.nvim",
|
||||
-- opts = {
|
||||
-- style = {
|
||||
-- italic_comments = false,
|
||||
-- italic_strings = false,
|
||||
-- transparent = false,
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
{
|
||||
"tiagovla/tokyodark.nvim",
|
||||
opts = {
|
||||
terminal_colors = true, -- enable terminal colors
|
||||
transparent_background = false, -- set background to transparent
|
||||
gamma = 0.90, -- adjust the brightness of the theme
|
||||
styles = {
|
||||
comments = { italic = false }, -- style for comments
|
||||
keywords = { italic = true }, -- style for keywords
|
||||
identifiers = { italic = true }, -- style for identifiers
|
||||
variables = { bold = true }, -- style for variables
|
||||
functions = {}, -- style for functions
|
||||
},
|
||||
custom_highlights = {} or function(highlights, palette)
|
||||
return {}
|
||||
end, -- extend highlights
|
||||
custom_palette = {} or function(palette)
|
||||
return {}
|
||||
end, -- extend palette
|
||||
},
|
||||
},
|
||||
{
|
||||
"neko-night/nvim",
|
||||
lazy = false,
|
||||
|
|
|
@ -4,7 +4,7 @@ return {
|
|||
dependencies = {
|
||||
{ "saghen/blink.cmp" },
|
||||
{ "antosha417/nvim-lsp-file-operations", config = true },
|
||||
{ "folke/neodev.nvim", opts = {} },
|
||||
-- { "folke/neodev.nvim", opts = {} },
|
||||
},
|
||||
|
||||
config = function()
|
||||
|
@ -87,13 +87,6 @@ return {
|
|||
filetypes = { "php", "blade.php" },
|
||||
})
|
||||
end,
|
||||
-- ["tsserver"] = function()
|
||||
-- -- Replace tsserver with typescript-language-server
|
||||
-- lspconfig["typescript-language-server"].setup({
|
||||
-- capabilities = capabilities,
|
||||
-- filetypes = { "typescript", "typescriptreact", "javascript", "javascriptreact" },
|
||||
-- })
|
||||
-- end,
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
|
|
@ -11,6 +11,17 @@ return {
|
|||
indent = { enabled = true },
|
||||
input = { enabled = true },
|
||||
|
||||
animate = {
|
||||
enabled = true,
|
||||
---@type snacks.animate.Duration|number
|
||||
duration = 3, -- ms per step
|
||||
|
||||
easing = "linear",
|
||||
fps = 60, -- frames per second. Global setting for all animations
|
||||
},
|
||||
|
||||
explorer = { enabled = false },
|
||||
|
||||
---@class snacks.dashboard.Config
|
||||
---@field enabled? boolean
|
||||
---@field sections snacks.dashboard.Section
|
||||
|
@ -110,6 +121,17 @@ return {
|
|||
-- end,
|
||||
-- desc = "Buffers",
|
||||
-- },
|
||||
|
||||
-- both of the next two bindings are the same, just for different keymaps
|
||||
-- ─< find [N]eovim config >────────────────────────────────────────────────────────────
|
||||
{
|
||||
"<leader>fn",
|
||||
function()
|
||||
Snacks.picker.files({ cwd = vim.fn.stdpath("config") })
|
||||
end,
|
||||
desc = "Find Config File",
|
||||
},
|
||||
-- ─< find neovim [C]onfig >────────────────────────────────────────────────────────────
|
||||
{
|
||||
"<leader>fc",
|
||||
function()
|
||||
|
@ -117,6 +139,7 @@ return {
|
|||
end,
|
||||
desc = "Find Config File",
|
||||
},
|
||||
|
||||
{
|
||||
"<leader>ff",
|
||||
function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue