Modified nvim setup a bit + installed game apps (steam, lutris, etc)
This commit is contained in:
parent
ed7dbca71c
commit
b24d90dfbd
20 changed files with 184 additions and 37 deletions
dotfiles/neovim/lua/my
|
@ -1,3 +1,4 @@
|
|||
-- TODO(imperanence): handle persistence
|
||||
local M = {}
|
||||
|
||||
function M.setup()
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
local M = {
|
||||
-- paste images from clipbaord
|
||||
"ekickx/clipboard-image.nvim",
|
||||
"postfen/clipboard-image.nvim",
|
||||
cmd = "PasteImg",
|
||||
}
|
||||
|
||||
|
|
|
@ -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(),
|
||||
},
|
||||
--}}}
|
||||
|
||||
{
|
||||
|
|
|
@ -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(),
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -159,6 +159,10 @@ local servers = {
|
|||
forwardSearchAfter = true,
|
||||
onSave = true,
|
||||
},
|
||||
chktex = {
|
||||
onOpenAndSave = true,
|
||||
onEdit = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue