nvim
This commit is contained in:
parent
0b7e396947
commit
c524448d7d
3 changed files with 24 additions and 6 deletions
|
@ -39,6 +39,7 @@ return {
|
|||
},
|
||||
sources = cmp.config.sources({
|
||||
{ name = "nvim_lsp" },
|
||||
{ name = "vim-dadbod-completion" },
|
||||
}, {
|
||||
{ name = "buffer" },
|
||||
{ name = "path" },
|
||||
|
|
17
nvim/lua/plugins/dadbod.lua
Normal file
17
nvim/lua/plugins/dadbod.lua
Normal file
|
@ -0,0 +1,17 @@
|
|||
return {
|
||||
"kristijanhusak/vim-dadbod-ui",
|
||||
dependencies = {
|
||||
{ "tpope/vim-dadbod", lazy = true },
|
||||
{ "kristijanhusak/vim-dadbod-completion", ft = { "sql", "mysql", "plsql" }, lazy = true },
|
||||
},
|
||||
cmd = {
|
||||
"DBUI",
|
||||
"DBUIToggle",
|
||||
"DBUIAddConnection",
|
||||
"DBUIFindBuffer",
|
||||
},
|
||||
init = function()
|
||||
-- Your DBUI configuration
|
||||
vim.g.db_ui_use_nerd_fonts = 1
|
||||
end,
|
||||
}
|
|
@ -6,12 +6,12 @@ return {
|
|||
name = "catppuccin",
|
||||
opts = {
|
||||
flavour = "frappe", -- latte, frappe, macchiato, mocha
|
||||
transparent_background = false,
|
||||
dim_inactive = {
|
||||
enabled = true,
|
||||
shade = "dark",
|
||||
percentage = 0.15,
|
||||
},
|
||||
transparent_background = true,
|
||||
-- dim_inactive = {
|
||||
-- enabled = true,
|
||||
-- shade = "dark",
|
||||
-- percentage = 0.15,
|
||||
-- },
|
||||
integrations = {
|
||||
cmp = true,
|
||||
fidget = true,
|
||||
|
|
Loading…
Reference in a new issue