aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/filetypes.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins/filetypes.lua')
-rw-r--r--nvim/lua/plugins/filetypes.lua42
1 files changed, 42 insertions, 0 deletions
diff --git a/nvim/lua/plugins/filetypes.lua b/nvim/lua/plugins/filetypes.lua
new file mode 100644
index 0000000..3ed883a
--- /dev/null
+++ b/nvim/lua/plugins/filetypes.lua
@@ -0,0 +1,42 @@
+return {
+ {
+ 'habamax/vim-godot',
+ ft = 'gdscript'
+ },
+ {
+ 'vim-pandoc/vim-pandoc',
+ ft = { "markdown", "pandoc" },
+ keys = {
+ { 'gO', vim.cmd.TOC, desc = "Table of contents" }
+ }
+ },
+ {
+ 'vim-pandoc/vim-pandoc-syntax',
+ ft = { "markdown", "pandoc" }
+ },
+ {
+ "tpope/vim-dadbod",
+ lazy = true
+ },
+ {
+ 'kristijanhusak/vim-dadbod-completion',
+ ft = { 'sql', 'mysql', 'plsql' },
+ lazy = true
+ },
+ {
+ 'kristijanhusak/vim-dadbod-ui',
+ dependencies = {
+ "tpope/vim-dadbod",
+ 'kristijanhusak/vim-dadbod-completion'
+ },
+ cmd = {
+ 'DBUI',
+ 'DBUIToggle',
+ 'DBUIAddConnection',
+ 'DBUIFindBuffer',
+ },
+ init = function()
+ vim.g.db_ui_use_nerd_fonts = 1
+ end,
+ }
+}