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 │
|
-- │ themes are under ./lua/pika/plugins/colorschemes.lua │
|
||||||
-- ╰──────────────────────────────────────────────────────╯
|
-- ╰──────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
vim.cmd.colorscheme("nekonight-moon")
|
vim.cmd.colorscheme("tokyodark")
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,24 +2,27 @@ return {
|
||||||
{ "rose-pine/neovim", name = "rose-pine" },
|
{ "rose-pine/neovim", name = "rose-pine" },
|
||||||
{ "L-Colombo/oldschool.nvim", config = "true" },
|
{ "L-Colombo/oldschool.nvim", config = "true" },
|
||||||
{ "ptdewey/darkearth-nvim" },
|
{ "ptdewey/darkearth-nvim" },
|
||||||
-- { "catppuccin/nvim", name = "catppuccin" },
|
{
|
||||||
-- { "folke/tokyonight.nvim" },
|
"tiagovla/tokyodark.nvim",
|
||||||
-- { "fynnfluegge/monet.nvim", name = "monet" },
|
opts = {
|
||||||
-- { "AlexvZyl/nordic.nvim" },
|
terminal_colors = true, -- enable terminal colors
|
||||||
-- { "eldritch-theme/eldritch.nvim" },
|
transparent_background = false, -- set background to transparent
|
||||||
-- { "EdenEast/nightfox.nvim" },
|
gamma = 0.90, -- adjust the brightness of the theme
|
||||||
-- { "DanWlker/primeppuccin", name = "primeppuccin" },
|
styles = {
|
||||||
-- { "sainnhe/sonokai" },
|
comments = { italic = false }, -- style for comments
|
||||||
-- {
|
keywords = { italic = true }, -- style for keywords
|
||||||
-- "ferdinandrau/lavish.nvim",
|
identifiers = { italic = true }, -- style for identifiers
|
||||||
-- opts = {
|
variables = { bold = true }, -- style for variables
|
||||||
-- style = {
|
functions = {}, -- style for functions
|
||||||
-- italic_comments = false,
|
},
|
||||||
-- italic_strings = false,
|
custom_highlights = {} or function(highlights, palette)
|
||||||
-- transparent = false,
|
return {}
|
||||||
-- },
|
end, -- extend highlights
|
||||||
-- },
|
custom_palette = {} or function(palette)
|
||||||
-- },
|
return {}
|
||||||
|
end, -- extend palette
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"neko-night/nvim",
|
"neko-night/nvim",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
|
|
|
@ -4,7 +4,7 @@ return {
|
||||||
dependencies = {
|
dependencies = {
|
||||||
{ "saghen/blink.cmp" },
|
{ "saghen/blink.cmp" },
|
||||||
{ "antosha417/nvim-lsp-file-operations", config = true },
|
{ "antosha417/nvim-lsp-file-operations", config = true },
|
||||||
{ "folke/neodev.nvim", opts = {} },
|
-- { "folke/neodev.nvim", opts = {} },
|
||||||
},
|
},
|
||||||
|
|
||||||
config = function()
|
config = function()
|
||||||
|
@ -87,13 +87,6 @@ return {
|
||||||
filetypes = { "php", "blade.php" },
|
filetypes = { "php", "blade.php" },
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
-- ["tsserver"] = function()
|
|
||||||
-- -- Replace tsserver with typescript-language-server
|
|
||||||
-- lspconfig["typescript-language-server"].setup({
|
|
||||||
-- capabilities = capabilities,
|
|
||||||
-- filetypes = { "typescript", "typescriptreact", "javascript", "javascriptreact" },
|
|
||||||
-- })
|
|
||||||
-- end,
|
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,17 @@ return {
|
||||||
indent = { enabled = true },
|
indent = { enabled = true },
|
||||||
input = { 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
|
---@class snacks.dashboard.Config
|
||||||
---@field enabled? boolean
|
---@field enabled? boolean
|
||||||
---@field sections snacks.dashboard.Section
|
---@field sections snacks.dashboard.Section
|
||||||
|
@ -110,6 +121,17 @@ return {
|
||||||
-- end,
|
-- end,
|
||||||
-- desc = "Buffers",
|
-- 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",
|
"<leader>fc",
|
||||||
function()
|
function()
|
||||||
|
@ -117,6 +139,7 @@ return {
|
||||||
end,
|
end,
|
||||||
desc = "Find Config File",
|
desc = "Find Config File",
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"<leader>ff",
|
"<leader>ff",
|
||||||
function()
|
function()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue