aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/filetypes.lua
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-08-22 19:38:29 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-08-22 19:38:29 -0400
commit433cd2117519375e93d92c79690a66ea46b84f25 (patch)
tree239c357d2cd89964923055c7d7db2566376eef6f /nvim/lua/plugins/filetypes.lua
parent72a36d40d50f47134a1ffbf5f995e168451ac6a2 (diff)
configured todo-comments and moved filetypes specific plugins
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,
+ }
+}