pojokcodeid.nvim-lazy/init.lua

15 lines
267 B
Lua
Raw Normal View History

2023-12-26 08:16:29 +07:00
if vim.g.vscode then
2024-05-21 22:37:48 +07:00
-- config vscode
Map = vim.keymap.set
Cmd = vim.cmd
2024-03-20 13:11:40 +07:00
2024-05-21 22:37:48 +07:00
VSCodeNotify = vim.fn.VSCodeNotify
VSCodeCall = vim.fn.VSCodeCall
2023-12-26 11:19:42 +07:00
2024-05-21 22:37:48 +07:00
require "vscode.functions"
require "vscode.mappings"
2023-12-26 08:16:29 +07:00
else
2024-05-21 22:37:48 +07:00
-- config neovim
require "core"
2023-12-26 08:16:29 +07:00
end