-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c702389
commit b7c3859
Showing
7 changed files
with
58 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
return { | ||
"epwalsh/obsidian.nvim", | ||
version = "*", -- recommended, use latest release instead of latest commit | ||
lazy = true, | ||
ft = "markdown", | ||
-- Replace the above line with this if you only want to load obsidian.nvim for markdown files in your vault: | ||
-- event = { | ||
-- -- If you want to use the home shortcut '~' here you need to call 'vim.fn.expand'. | ||
-- -- E.g. "BufReadPre " .. vim.fn.expand "~" .. "/my-vault/*.md" | ||
-- -- refer to `:h file-pattern` for more examples | ||
-- "BufReadPre path/to/my-vault/*.md", | ||
-- "BufNewFile path/to/my-vault/*.md", | ||
-- }, | ||
dependencies = { | ||
"nvim-lua/plenary.nvim", | ||
}, | ||
opts = { | ||
workspaces = { | ||
{ | ||
name = "Nanami Lab", | ||
path = "~/Documents/Nanami Lab", | ||
}, | ||
}, | ||
}, | ||
daily_notes = { | ||
folder = "Daily Notes", | ||
date_format = "%Y-%m-%d", | ||
alias_format = "%B %-d, %Y", | ||
default_tags = { "daily-notes" }, | ||
template = nil | ||
}, | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
docker run --rm -it -v $PWD:/workdir ghcr.io/nanamiiiii/tex-build-container:debian-latest \ | ||
sh -c "latexmk -synctex=1 -silent -outdir=./out ${1}" |