packages: Add polylux and pdfpc

This commit is contained in:
DashieTM 2024-07-01 16:29:51 +02:00
parent b9c687d62e
commit 7e65c8e62a
22 changed files with 506 additions and 164 deletions

View file

@ -5,7 +5,6 @@ local function open_nvim_tree(data)
if not directory then
return
end
print("FUCK")
-- change to the directory
vim.cmd.cd(data.file)

View file

@ -38,7 +38,6 @@ require("lazy").setup({
lazy = true,
version = false,
},
install = { colorscheme = { "tokyonight", "catppuccin-mocha" } },
checker = { enabled = true, notify = false },
change_detection = { enabled = true, notify = false },
performance = {

View file

@ -33,7 +33,6 @@ return {
"FelipeLema/cmp-async-path",
"saadparwaiz1/cmp_luasnip",
"Saecki/crates.nvim",
{ "roobert/tailwindcss-colorizer-cmp.nvim", config = true },
},
opts = function()
vim.api.nvim_set_hl(0, "CmpGhostText", { link = "Comment", default = true })

View file

@ -25,9 +25,6 @@ return {
-- LSP Server Settings
---@type lspconfig.options
servers = {
rust_analyzer = {
mason = false,
},
marksman = {
mason = false,
},

View file

@ -5,7 +5,6 @@ return {
"LazyVim/LazyVim",
opts = {
colorscheme = "tokyonight-night",
-- colorscheme = "catppuccin-mocha",
},
},
{
@ -94,21 +93,26 @@ return {
},
{
"nvim-treesitter/nvim-treesitter",
opts = {
textobjects = {
select = {
enable = true,
lookahead = true,
keymaps = {
-- You can use the capture groups defined in textobjects.scm
["af"] = "@function.outer",
["if"] = "@function.inner",
["ac"] = "@class.outer",
["ic"] = "@class.inner",
config = function(_, _)
local opts = {
ensure_installed = {},
-- parser_install_dir = "~/.config/nvim",
textobjects = {
select = {
enable = true,
lookahead = true,
keymaps = {
-- You can use the capture groups defined in textobjects.scm
["af"] = "@function.outer",
["if"] = "@function.inner",
["ac"] = "@class.outer",
["ic"] = "@class.inner",
},
},
},
},
},
}
require("nvim-treesitter.configs").setup(opts)
end,
},
{
"karb94/neoscroll.nvim",
@ -162,7 +166,7 @@ return {
},
{
"barreiroleo/ltex_extra.nvim",
ft = { "markdown", "tex", "typst", "typ" },
ft = { "tex", "typst", "typ" },
lazy = true,
},
{
@ -256,13 +260,6 @@ return {
},
},
},
{
"DashieTM/test_plugin",
lazy = false,
opts = {
what = 0,
},
},
{
"DreamMaoMao/yazi.nvim",
dependencies = {