From 433cd2117519375e93d92c79690a66ea46b84f25 Mon Sep 17 00:00:00 2001 From: JP Appel Date: Thu, 22 Aug 2024 19:38:29 -0400 Subject: configured todo-comments and moved filetypes specific plugins --- nvim/lua/plugins/filetypes.lua | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 nvim/lua/plugins/filetypes.lua (limited to 'nvim/lua/plugins/filetypes.lua') 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, + } +} -- cgit v1.2.3