-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c632e9e
commit 784cd7a
Showing
12 changed files
with
171 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
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() | ||
vim.g.db_ui_use_nerd_fonts = 1 | ||
vim.g["compe.source.vim_dadbod_completion"] = true | ||
vim.api.nvim_create_autocmd("FileType", { | ||
pattern = { "sql", "mysql", "plsql" }, | ||
callback = function() | ||
require("cmp").setup.buffer({ | ||
sources = { | ||
{ name = "vim-dadbod-completion" }, | ||
}, | ||
}) | ||
end, | ||
}) | ||
end, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
return { | ||
"epwalsh/obsidian.nvim", | ||
version = "v3.9.0", -- recommended, use latest release instead of latest commit | ||
-- lazy = true, | ||
-- event = { | ||
-- "BufReadPre " .. vim.fn.expand("~") .. "/notes/*.md", | ||
-- "BufNewFile " .. vim.fn.expand("~") .. "/notes/*.md", | ||
-- }, | ||
dependencies = { | ||
"nvim-lua/plenary.nvim", | ||
}, | ||
opts = { | ||
workspaces = { | ||
{ | ||
name = "notes", | ||
path = "~/notes/", | ||
}, | ||
}, | ||
completion = { | ||
-- Set to false to disable completion. | ||
nvim_cmp = true, | ||
-- Trigger completion at 2 chars. | ||
min_chars = 2, | ||
}, -- see below for full list of options 👇 | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
return { | ||
"NStefan002/screenkey.nvim", | ||
keys = { | ||
{ "<leader>ts", "<cmd>Screenkey toggle<cr>" }, | ||
}, | ||
lazy = true, | ||
version = "*", | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.