11 lines
237 B
Lua
11 lines
237 B
Lua
vim.g.mapleader = ','
|
|
if vim.loop.os_uname().sysname == 'Windows_NT' then
|
|
vim.env.HOME = ''
|
|
end
|
|
if not vim.g.vscode then
|
|
require('config.lazy')
|
|
require('my_keymappings')
|
|
require('my_autocommands')
|
|
require('config.options')
|
|
end
|