1

Compare commits

...

2 Commits

3 changed files with 30 additions and 4 deletions

View File

@ -0,0 +1,5 @@
img[alt*="center"] {
display: block;
margin-left: auto;
margin-right: auto;
}

View File

@ -17,14 +17,17 @@ in {
];
file = {
# Old collection of macros and environments I once used, but not anymore...
# Collection of macros and environments I once used, but not anymore...
# "texmf/tex/latex/custom/christex.sty".source = ../../../config/latex/christex.sty;
# "Notes/Obsidian/Chriphost/christex.sty".source = ../../../config/latex/christex.sty; # For obsidian notes
"Notes/Obsidian/Chriphost/christex.sty".source = ../../../config/latex/christex.sty; # For old obsidian notes
".indentconfig.yaml".source = ../../../config/latex/.indentconfig.yaml;
".indentsettings.yaml".source = ../../../config/latex/.indentsettings.yaml;
# TODO: These don't belong into a latex module
"Notes/Obsidian/Chriphost/latex_snippets.json".source = ../../../config/obsidian/latex_snippets.json; # TODO: Symlink
"Notes/Obsidian/Chriphost/.obsidian/snippets/latex_preview.css".source = ../../../config/obsidian/css_snippets/latex_preview.css;
"Notes/Obsidian/Chriphost/.obsidian/snippets/center_image.css".source = ../../../config/obsidian/css_snippets/center_image.css;
};
};
};

View File

@ -436,14 +436,20 @@ in {
};
fuzzy = {
use_typo_resistance = true;
use_frecency = true;
use_proximity = true;
};
sources = {
default = ["lsp" "path" "snippets"]; # No "buffer"
cmdline.__raw = ''{}''; # Disable cmdline completion (done by noice)
};
cmdline = {
enabled = false;
};
term = {
enabled = false;
};
appearance = {
@ -1860,6 +1866,18 @@ in {
config = ''
function(_, opts)
require("nvim-treesitter.configs").setup(opts)
-- GLSL filetypes
vim.filetype.add {
extension = {
vert = "vert",
frag = "frag",
},
}
-- Tell treesitter that those filetypes are GLSL
vim.treesitter.language.register("glsl", "vert")
vim.treesitter.language.register("glsl", "frag")
end
'';
opts = {