зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 21:26:09 +02:00
m
Этот коммит содержится в:
родитель
0887129432
Коммит
cba906abfe
@ -6,6 +6,8 @@ aurora
|
||||
https://www.youtube.com/playlist?list=PLtnoA8Ys77oSEYxYWccdahDdsrc_B3QM1
|
||||
|
||||
2023
|
||||
Valdman - Kedmi - 11.27 of 57:21
|
||||
https://www.youtube.com/watch?v=WIcFDI8IQrk
|
||||
LawAndOrder - Kedmi - 10.13 of 59:13
|
||||
https://www.youtube.com/watch?v=jTJpad68SXs
|
||||
Valdman - Kedmi - 10.22 - Hamas to the GraveYard of 56:48
|
||||
|
||||
@ -1,10 +1,70 @@
|
||||
https://www.vim.org/scripts/script.php?script_id=5665
|
||||
https://github.com/tpope/vim-dadbod
|
||||
:DB jdbc:sqlserver://...
|
||||
|
||||
sql-ib-ue1-arb-dev03-dp-kuz3.database.windows.net
|
||||
|
||||
https://github.com/kristijanhusak/vim-dadbod-ui
|
||||
https://github.com/kristijanhusak/vim-dadbod-completion
|
||||
|
||||
https://vimawesome.com/plugin/vim-lovehandle
|
||||
|
||||
2023
|
||||
https://habr.com/ru/articles/714926/
|
||||
WhereToEnter - DB Queries from Editor of 25:32
|
||||
https://www.youtube.com/watch?v=SITIs6kAOoA
|
||||
2022
|
||||
https://alpha2phi.medium.com/neovim-for-beginners-database-explorer-7db3d3910876
|
||||
.config/nvim/lua/custom/plugins.lua
|
||||
-- Database ??? use {...}
|
||||
{
|
||||
"tpope/vim-dadbod",
|
||||
opt = true,
|
||||
requires = {
|
||||
"kristijanhusak/vim-dadbod-ui",
|
||||
"kristijanhusak/vim-dadbod-completion",
|
||||
},
|
||||
config = function()
|
||||
require("custom.configs.dadbod").setup()
|
||||
end,
|
||||
cmd = { "DBUIToggle", "DBUI", "DBUIAddConnection", "DBUIFindBuffer", "DBUIRenameBuffer", "DBUILastQueryInfo" },
|
||||
}
|
||||
|
||||
.config/nvim/lua/custom/configs/dadbod.lua
|
||||
-- Dadbod
|
||||
local M = {}
|
||||
|
||||
local function db_completion()
|
||||
require("cmp").setup.buffer { sources = { { name = "vim-dadbod-completion" } } }
|
||||
end
|
||||
|
||||
function M.setup()
|
||||
vim.g.db_ui_save_location = vim.fn.stdpath "config" .. require("plenary.path").path.sep .. "db_ui"
|
||||
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = {
|
||||
"sql",
|
||||
},
|
||||
command = [[setlocal omnifunc=vim_dadbod_completion#omni]],
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = {
|
||||
"sql",
|
||||
"mysql",
|
||||
"plsql",
|
||||
},
|
||||
callback = function()
|
||||
vim.schedule(db_completion)
|
||||
end,
|
||||
})
|
||||
end
|
||||
|
||||
return M
|
||||
|
||||
issues
|
||||
https://vi.stackexchange.com/questions/42377/neovim-lua-module-not-found-even-though-it-exist
|
||||
Command DBUI not found after loading vim-dadbod
|
||||
|
||||
https://www.reddit.com/r/neovim/comments/zr0njo/toggleterm_does_not_open_vimdadbodui_with_v_c/
|
||||
https://github.com/kristijanhusak/vim-dadbod-completion/issues/51
|
||||
|
||||
@ -1,2 +1,3 @@
|
||||
2023
|
||||
https://blog.logrocket.com/building-github-copilot-app/
|
||||
https://www.linkedin.com/pulse/my-annual-letter-leading-new-era-satya-nadella/
|
||||
|
||||
Загрузка…
x
Ссылка в новой задаче
Block a user