mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 00:25:47 +02:00
14 lines
278 B
Lua
14 lines
278 B
Lua
if vim.g.vscode then
|
|
-- config vscode
|
|
Map = vim.keymap.set
|
|
Cmd = vim.cmd
|
|
|
|
VSCodeNotify = vim.fn.VSCodeNotify
|
|
VSCodeCall = vim.fn.VSCodeCall
|
|
|
|
require("_vscode.functions")
|
|
require("_vscode.mappings")
|
|
else
|
|
-- config neovim
|
|
require("pcode.core")
|
|
end
|