1
Fork 0

Modified nvim setup a bit + installed game apps (steam, lutris, etc)

This commit is contained in:
Matei Adriel 2023-04-25 16:35:09 +03:00
parent ed7dbca71c
commit b24d90dfbd
No known key found for this signature in database
20 changed files with 184 additions and 37 deletions

View file

@ -3,7 +3,7 @@
"abbreinder.nvim": { "branch": "main", "commit": "5b2b5ff08a9ada42238d733aeebc6d3d96314d77" },
"abbremand.nvim": { "branch": "main", "commit": "d633341f632b0b2666dfc6dfe6b9842ba1610a1d" },
"catppuccin": { "branch": "main", "commit": "6eb93f7240476ac51cec909fe0016e9a269c2a92" },
"clipboard-image.nvim": { "branch": "main", "commit": "d1550dc26729b7954f95269952e90471b838fa25" },
"clipboard-image.nvim": { "branch": "main", "commit": "3d10d535cb3bf300fb8e74d886840edb81a63bd4" },
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
"cmp-cmdline": { "branch": "main", "commit": "af88e700417c6449719fc77f6f3745f88e42d5da" },
"cmp-emoji": { "branch": "main", "commit": "19075c36d5820253d32e2478b6aaf3734aeaafa0" },
@ -16,6 +16,7 @@
"dressing.nvim": { "branch": "master", "commit": "0e3e1eba147fee6e638ac1ac28f0495bcde17319" },
"fidget.nvim": { "branch": "main", "commit": "0ba1e16d07627532b6cae915cc992ecac249fb97" },
"firenvim": { "branch": "master", "commit": "ee4ef314bd990b2b05b7fbd95b857159e444a2fe" },
"github-actions-yaml.vim": { "branch": "master", "commit": "f2f16243447cea174daa6b4a9ffd3ff9213814ef" },
"gitlinker.nvim": { "branch": "master", "commit": "cc59f732f3d043b626c8702cb725c82e54d35c25" },
"glow.nvim": { "branch": "main", "commit": "a3f24fdaa71d2c25a2b88026032b34f5b6a6e215" },
"harpoon": { "branch": "master", "commit": "f7040fd0c44e7a4010369136547de5604b9c22a1" },
@ -28,6 +29,7 @@
"knap": { "branch": "main", "commit": "8c083d333b8a82421a521539eb1c450b06c90eb6" },
"kotlin-vim": { "branch": "master", "commit": "53fe045906df8eeb07cb77b078fc93acda6c90b8" },
"lazy.nvim": { "branch": "main", "commit": "5c89dc52f42e5058a46b0912d7d9042f564e44e0" },
"lean.nvim": { "branch": "main", "commit": "157ca8a08ad13845cf67b440a595b55b25b9a459" },
"leap": { "branch": "main", "commit": "0eb3611593e135150e2f7880ec67568ccb51c17a" },
"live-command.nvim": { "branch": "main", "commit": "ce4b104ce702c7bb9fdff863059af6d47107ca61" },
"lspkind.nvim": { "branch": "master", "commit": "c68b3a003483cf382428a43035079f78474cd11e" },

View file

@ -1,3 +1,4 @@
-- TODO(imperanence): handle persistence
local M = {}
function M.setup()

View file

@ -1,6 +1,5 @@
local M = {
-- paste images from clipbaord
"ekickx/clipboard-image.nvim",
"postfen/clipboard-image.nvim",
cmd = "PasteImg",
}

View file

@ -47,6 +47,12 @@ return {
ft = "dhall",
cond = env.vscode.not_active(),
},
{
"yasuhiroki/github-actions-yaml.vim",
ft = { "yml", "yaml" },
cond = env.vscode.not_active(),
},
--}}}
{

View file

@ -2,7 +2,7 @@ local env = require("my.helpers.env")
local M = {
"goerz/jupytext.vim",
lazy = false, -- Otherwise I can't get this to work with nvim *.ipynb
ft = "ipynb",
cond = env.vscode.not_active(),
}

View file

@ -3,7 +3,11 @@ local lspconfig = require("my.plugins.lspconfig")
local M = {
"Julian/lean.nvim", -- lean support
dependencies = { "neovim/nvim-lspconfig", "nvim-lua/plenary.nvim", "hrsh7th/nvim-cmp" },
dependencies = {
"neovim/nvim-lspconfig",
"nvim-lua/plenary.nvim",
"hrsh7th/nvim-cmp",
},
ft = "lean",
config = function()
require("lean").setup({
@ -19,4 +23,4 @@ local M = {
cond = env.vscode.not_active(),
}
return {}
return M

View file

@ -159,6 +159,10 @@ local servers = {
forwardSearchAfter = true,
onSave = true,
},
chktex = {
onOpenAndSave = true,
onEdit = true,
},
},
},
},