Changes in Nvim and Alacritty
This commit is contained in:
@@ -30,7 +30,6 @@ return {
|
||||
"stylua",
|
||||
"prettier",
|
||||
"vale",
|
||||
"latexindent",
|
||||
},
|
||||
})
|
||||
end,
|
||||
|
||||
@@ -19,7 +19,6 @@ return {
|
||||
formatting.black,
|
||||
formatting.clang_format,
|
||||
formatting.prettier,
|
||||
formatting.latexindent,
|
||||
diagnostics.mypy.with({
|
||||
extra_args = function()
|
||||
local virtual = os.getenv("VIRTUAL_ENV") or os.getenv("CONDA_PREFIX") or "/usr"
|
||||
|
||||
29
.config/nvim/lua/jirr02/plugins/neorg.lua
Normal file
29
.config/nvim/lua/jirr02/plugins/neorg.lua
Normal file
@@ -0,0 +1,29 @@
|
||||
return {
|
||||
"nvim-neorg/neorg",
|
||||
build = ":Neorg sync-parsers",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
config = function()
|
||||
local neorg = require("neorg")
|
||||
|
||||
neorg.setup({
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
["core.completion"] = {
|
||||
config = {
|
||||
engine = "nvim-cmp",
|
||||
},
|
||||
},
|
||||
["core.integrations.treesitter"] = {},
|
||||
["core.concealer"] = {},
|
||||
["core.dirman"] = {
|
||||
config = {
|
||||
workspaces = {
|
||||
code = "~/Projects/Private/neorg_code",
|
||||
edu = "~/Projects/Private/neorg_edu",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
3
.config/nvim/lua/jirr02/plugins/vimtex.lua
Normal file
3
.config/nvim/lua/jirr02/plugins/vimtex.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
return {
|
||||
"lervag/vimtex",
|
||||
}
|
||||
@@ -9,7 +9,11 @@ return {
|
||||
local wk = require("which-key")
|
||||
|
||||
wk.setup({
|
||||
opts = {},
|
||||
opts = {
|
||||
defaults = {
|
||||
["<leader>t"] = { name = "+vimtex" },
|
||||
},
|
||||
},
|
||||
})
|
||||
wk.register({
|
||||
n = {
|
||||
|
||||
Reference in New Issue
Block a user