Compare commits
10 Commits
08184ce63d
...
22dde69f49
Author | SHA1 | Date | |
---|---|---|---|
22dde69f49 | |||
4498108b19 | |||
89668c0024 | |||
6abd9e80c4 | |||
|
840422bde1 | ||
|
e4c8ff2f16 | ||
|
6ad2dee781 | ||
|
bee651d083 | ||
|
6db4bc6b2a | ||
|
bb38aab048 |
3
init.lua
3
init.lua
@ -7,7 +7,7 @@ if not G.loop.fs_stat(lazypath) then
|
||||
"git",
|
||||
"clone",
|
||||
"--filter=blob:none",
|
||||
"http://git.qqnewbie.top/newbie/lazy.nvim.git",
|
||||
"https://github.com/folke/lazy.nvim.git",
|
||||
"--branch=stable",
|
||||
lazypath,
|
||||
})
|
||||
@ -26,6 +26,7 @@ G.opt.rtp:prepend(lazypath)
|
||||
|
||||
require("keymap")
|
||||
|
||||
|
||||
if G.g.vscode then
|
||||
require('vscode')
|
||||
else
|
||||
|
@ -1,6 +1,6 @@
|
||||
local G = {}
|
||||
|
||||
G.use_ssh = true
|
||||
G.use_ssh = false
|
||||
|
||||
G.g = vim.g
|
||||
G.b = vim.b
|
||||
|
@ -30,6 +30,8 @@ G.map({
|
||||
{ 'n', '<c-c>', ':q<CR>', opt },
|
||||
{ 'n', '<c-S>', ':w !sudo tee %<CR>', opt },
|
||||
{ 'n', '<c-q>', ':q!<CR>', opt },
|
||||
{ 'v', '<cs-y>', '"+y', opt },
|
||||
|
||||
|
||||
|
||||
{ 'n', '<leader>y', 'ggyG', opt },
|
||||
|
22
lua/lsp/basedpyright.lua
Normal file
22
lua/lsp/basedpyright.lua
Normal file
@ -0,0 +1,22 @@
|
||||
return {
|
||||
-- capabilities = require("cmp_nvim_lsp").default_capabilities(),
|
||||
settings = {
|
||||
basedpyright = {
|
||||
analysis = {
|
||||
autoSearchPaths = true,
|
||||
diagnosticMode = "openFilesOnly",
|
||||
useLibraryCodeForTypes = true,
|
||||
typeCheckingMode = "standard"
|
||||
},
|
||||
},
|
||||
},
|
||||
on_attach = function()
|
||||
G.api.nvim_create_user_command('R', function()
|
||||
G.cmd [[set splitbelow]]
|
||||
G.cmd [[sp]]
|
||||
G.cmd [[term python3 %]]
|
||||
G.cmd [[resize 10]]
|
||||
G.cmd [[startinsert]]
|
||||
end, {})
|
||||
end
|
||||
}
|
@ -56,7 +56,7 @@ G.au({ "InsertEnter" }, {
|
||||
end,
|
||||
})
|
||||
|
||||
G.au({ "VimEnter" }, {
|
||||
G.au({ "VimEnter", "BufEnter" }, {
|
||||
pattern = { "*.code-snippets" },
|
||||
callback = function()
|
||||
G.cmd("setfiletype json")
|
||||
@ -69,3 +69,23 @@ G.au({ "VimEnter" }, {
|
||||
-- if index
|
||||
-- }
|
||||
-- })
|
||||
|
||||
|
||||
local function isempty(s)
|
||||
return s == nil or s == ""
|
||||
end
|
||||
|
||||
local function use_if_defined(val, fallback)
|
||||
return val ~= nil and val or fallback
|
||||
end
|
||||
|
||||
|
||||
local conda_prefix = os.getenv("CONDA_PREFIX")
|
||||
if not isempty(conda_prefix) then
|
||||
vim.g.python_host_prog = use_if_defined(vim.g.python_host_prog, conda_prefix .. "/bin/python")
|
||||
vim.g.python3_host_prog = use_if_defined(vim.g.python3_host_prog, conda_prefix .. "/bin/python")
|
||||
else
|
||||
vim.g.python_host_prog = use_if_defined(vim.g.python_host_prog, "python")
|
||||
vim.g.python3_host_prog = use_if_defined(vim.g.python3_host_prog, "python3")
|
||||
end
|
||||
|
||||
|
@ -1,30 +1,28 @@
|
||||
return {
|
||||
'lilydjwg/colorizer', -- 颜色识别
|
||||
{
|
||||
-- 类似postman的curl工具
|
||||
"rest-nvim/rest.nvim",
|
||||
dependencies = { { "nvim-lua/plenary.nvim" } },
|
||||
config = function()
|
||||
require("rest-nvim").setup({
|
||||
--- Get the same options from Packer setup
|
||||
})
|
||||
end
|
||||
},
|
||||
{
|
||||
-- go开发
|
||||
"ray-x/go.nvim",
|
||||
dependencies = { -- optional packages
|
||||
"ray-x/guihua.lua",
|
||||
"neovim/nvim-lspconfig",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
},
|
||||
config = function()
|
||||
require("go").setup()
|
||||
end,
|
||||
-- event = { "CmdlineEnter" },
|
||||
ft = { "go", 'gomod' },
|
||||
build = ':lua require("go.install").update_all_sync()' -- if you need to install/update all binaries
|
||||
},
|
||||
-- "rest-nvim/rest.nvim",
|
||||
-- dependencies = { { "nvim-lua/plenary.nvim" } },
|
||||
-- config = function()
|
||||
-- require("rest-nvim").setup({
|
||||
-- --- Get the same options from Packer setup
|
||||
-- })
|
||||
-- end
|
||||
-- },
|
||||
-- {
|
||||
-- -- go开发
|
||||
-- "ray-x/go.nvim",
|
||||
-- dependencies = { -- optional packages
|
||||
-- "ray-x/guihua.lua",
|
||||
-- "neovim/nvim-lspconfig",
|
||||
-- "nvim-treesitter/nvim-treesitter",
|
||||
-- },
|
||||
-- config = function()
|
||||
-- require("go").setup()
|
||||
-- end,
|
||||
-- -- event = { "CmdlineEnter" },
|
||||
-- ft = { "go", 'gomod' },
|
||||
-- build = ':lua require("go.install").update_all_sync()' -- if you need to install/update all binaries
|
||||
-- },
|
||||
{
|
||||
-- 终端
|
||||
'akinsho/toggleterm.nvim',
|
||||
|
@ -45,13 +45,14 @@ return {
|
||||
end
|
||||
},
|
||||
-- {
|
||||
-- "askfiy/nvim-picgo",
|
||||
-- 'kevinhwang91/nvim-ufo',
|
||||
-- dependencies = {
|
||||
-- 'kevinhwang91/promise-async'
|
||||
-- },
|
||||
-- config = function ()
|
||||
-- G.map({
|
||||
-- { 'n', '<leader>pp', ':UploadClipboard<CR>' }
|
||||
-- })
|
||||
-- require("nvim-picgo").setup()
|
||||
-- require("ufo").setup()
|
||||
-- end
|
||||
|
||||
-- },
|
||||
{
|
||||
-- hop
|
||||
|
@ -11,11 +11,10 @@ return {
|
||||
require 'lspconfig'.lua_ls.setup(require('lsp.lua'))
|
||||
require 'lspconfig'.clangd.setup(require('lsp.c'))
|
||||
require 'lspconfig'.bashls.setup(require('lsp.bash'))
|
||||
require 'lspconfig'.pyright.setup(require('lsp.pyright'))
|
||||
require 'lspconfig'.basedpyright.setup(require('lsp.basedpyright'))
|
||||
require 'lspconfig'.yamlls.setup(require('lsp.yaml'))
|
||||
require 'lspconfig'.gopls.setup(require('lsp.go'))
|
||||
require 'lspconfig'.jsonls.setup(require('lsp.json'))
|
||||
require 'lspconfig'.javals.setup()
|
||||
|
||||
|
||||
G.map({
|
||||
@ -51,13 +50,11 @@ return {
|
||||
}
|
||||
require("mason-lspconfig").setup({
|
||||
ensure_installed = {
|
||||
"clangd",
|
||||
"bashls",
|
||||
"pyright",
|
||||
-- "basedpyright",
|
||||
"lua_ls",
|
||||
"jsonls",
|
||||
"yamlls",
|
||||
"gopls"
|
||||
}
|
||||
})
|
||||
end
|
||||
|
@ -41,8 +41,8 @@
|
||||
"#define head g.head",
|
||||
"#define maps g.maps",
|
||||
"#define add g.add",
|
||||
"",
|
||||
],
|
||||
""
|
||||
]
|
||||
},
|
||||
"Class_Graph_Dijkstra": {
|
||||
"prefix": "Class_Graph_Dijkstra",
|
||||
@ -74,8 +74,8 @@
|
||||
" else",
|
||||
" return -1;",
|
||||
"}",
|
||||
"",
|
||||
],
|
||||
""
|
||||
]
|
||||
},
|
||||
"Class_Graph_SPFA": {
|
||||
"prefix": "Class_Graph_SPFA",
|
||||
@ -103,8 +103,8 @@
|
||||
" if(dis[en] == inf) return -1;",
|
||||
" return dis[en];",
|
||||
"}",
|
||||
"",
|
||||
],
|
||||
""
|
||||
]
|
||||
},
|
||||
"Class_Graph_Kurskal": {
|
||||
"prefix": "Class_Graph_Kurskal",
|
||||
@ -121,8 +121,8 @@
|
||||
" }",
|
||||
" return res;",
|
||||
"}",
|
||||
"",
|
||||
],
|
||||
""
|
||||
]
|
||||
},
|
||||
"Class_Graph_Prim": {
|
||||
"prefix": "Class_Graph_Prim",
|
||||
@ -166,7 +166,7 @@
|
||||
" ans = max(ans, max(up[i], dis1[i]));",
|
||||
" }",
|
||||
" return ans;",
|
||||
"}",
|
||||
"}"
|
||||
]
|
||||
},
|
||||
"Class_Graph_SCC": {
|
||||
@ -218,8 +218,8 @@
|
||||
" return;",
|
||||
" }",
|
||||
"};",
|
||||
"",
|
||||
],
|
||||
""
|
||||
]
|
||||
},
|
||||
"Class_Graph_Euler": {
|
||||
"prefix": "Class_Graph_Euler",
|
||||
@ -270,7 +270,7 @@
|
||||
"",
|
||||
"};",
|
||||
"#define path eu.path",
|
||||
"",
|
||||
""
|
||||
]
|
||||
},
|
||||
"Class_Graph_LCA": {
|
||||
@ -318,8 +318,8 @@
|
||||
" return fa[0][a];",
|
||||
" }",
|
||||
"};",
|
||||
"",
|
||||
],
|
||||
""
|
||||
]
|
||||
},
|
||||
"Class_Graph_erfen": {
|
||||
"prefix": "Class_Graph_erfen",
|
||||
@ -353,7 +353,7 @@
|
||||
" return false;",
|
||||
" }",
|
||||
"};",
|
||||
"",
|
||||
""
|
||||
]
|
||||
}
|
||||
}
|
@ -18,5 +18,26 @@
|
||||
" $1",
|
||||
"}"
|
||||
]
|
||||
},
|
||||
"ctx": {
|
||||
"prefix": "ctx",
|
||||
"body": [
|
||||
"ctx := context.Background()"
|
||||
]
|
||||
},
|
||||
"cok": {
|
||||
"prefix": "cok",
|
||||
"body": [
|
||||
"c.JSON(http.StatusOK, vo.Success($1))"
|
||||
]
|
||||
},
|
||||
"cbad": {
|
||||
"prefix": "cbad",
|
||||
"body": [
|
||||
"if err != nil {",
|
||||
" c.JSON(http.StatusBadRequest, vo.Fail(err))",
|
||||
" return",
|
||||
"}"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user