Skip to content
Snippets Groups Projects
Commit 2c67bbfa authored by Tobias's avatar Tobias
Browse files

Update nvim config from Thinkpad

parent 028a6853
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
"extras": [
"lazyvim.plugins.extras.coding.luasnip",
"lazyvim.plugins.extras.coding.mini-surround",
"lazyvim.plugins.extras.coding.nvim-cmp",
"lazyvim.plugins.extras.formatting.black",
"lazyvim.plugins.extras.lang.markdown",
"lazyvim.plugins.extras.lang.python",
......@@ -10,7 +11,7 @@
"lazyvim.plugins.extras.ui.mini-indentscope"
],
"news": {
"NEWS.md": "6520"
"NEWS.md": "10960"
},
"version": 6
"version": 7
}
\ No newline at end of file
......@@ -7,6 +7,8 @@ return {
require("luasnip").config.setup({
update_events = "TextChanged,TextChangedI",
enable_autosnippets = true,
cut_store_selection_keys = "<Tab>",
store_selection_keys = "<Tab>",
})
end,
}
......@@ -5,13 +5,17 @@ snippet ig
autosnippet $$
$${1}$$0
snippet __
autosnippet __
_{${1}}$0
snippet ^^
autosnippet ^^
^{${1}}$0
snippet node
\node [$1] ($2) at (${3:0,0}) {${0:$TM_SELECTED_TEXT}};
# latex templates
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment