forked from askfiy/nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.lua
30 lines (28 loc) · 913 Bytes
/
options.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
local api = require("utils.api")
local options = {
-- whether to enable transparent background
transparent = false,
-- whether to show winbar
show_winbar = true,
-- whether to add a border to the floating window
float_border = true,
-- specify the lint configuration file
lint_directory = api.path.join(vim.fn.stdpath("config"), "lint"),
-- configuration file path for user code snippets
snippets_directory = api.path.join(vim.fn.stdpath("config"), "snippets"),
-- download the address of the plugin, treesitter parser, lsp server
download_source = "https://github.com/",
-- download_source = "https://hub.fastgit.xyz/",
}
-- database link configuration
options.dbs = {
{
name = "dev",
url = "mysql://askfiy@192.168.0.120/db1",
},
{
name = "local",
url = "mysql://root@localhost:3306/test",
},
}
return options