clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix error with dadbod

sspaeti 867f2e14 c6efaab1

+8
+8
nvim/.config/nvim/lua/sspaeti/plugins/aerial.lua
··· 7 7 }, 8 8 config = function() 9 9 require('aerial').setup({ 10 + -- Skip treesitter for SQL to avoid create_policy query error 11 + -- See: https://github.com/stevearc/aerial.nvim/issues/506 12 + backends = { 13 + ["_"] = { "treesitter", "lsp", "markdown", "asciidoc", "man" }, 14 + sql = { "lsp" }, 15 + mysql = { "lsp" }, 16 + plsql = { "lsp" }, 17 + }, 10 18 on_attach = function(bufnr) 11 19 -- Toggle the aerial window with <leader>a 12 20 vim.api.nvim_buf_set_keymap(bufnr, 'n', '<leader>o', '<cmd>AerialToggle!<CR>', {})