diff options
author | Yigit Sever | 2024-11-26 13:30:16 +0100 |
---|---|---|
committer | Yigit Sever | 2024-11-26 13:30:16 +0100 |
commit | 5254be1211f44451333a7067afc26344eae7b488 (patch) | |
tree | 1030e8078d427281b9e0c3e23898e38a62d952a3 /.config/nvim/lua | |
parent | 32be7db93f7f5bded7455bb4bab8fb597fc61236 (diff) | |
download | dotfiles-5254be1211f44451333a7067afc26344eae7b488.tar.gz dotfiles-5254be1211f44451333a7067afc26344eae7b488.tar.bz2 dotfiles-5254be1211f44451333a7067afc26344eae7b488.zip |
nvim: add typst plugins
Diffstat (limited to '.config/nvim/lua')
-rw-r--r-- | .config/nvim/lua/plugins/typst.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/typst.lua b/.config/nvim/lua/plugins/typst.lua new file mode 100644 index 0000000..c04ea70 --- /dev/null +++ b/.config/nvim/lua/plugins/typst.lua | |||
@@ -0,0 +1,10 @@ | |||
1 | return { | ||
2 | { | ||
3 | 'chomosuke/typst-preview.nvim', | ||
4 | ft = 'typst', | ||
5 | version = '1.*', | ||
6 | config = function() | ||
7 | require 'typst-preview'.setup {} | ||
8 | end, | ||
9 | } | ||
10 | } | ||