This commit is contained in:
Javier Pacheco 2023-09-18 22:06:43 -05:00
parent 0578ad2a2f
commit 6f6027060e
1 changed files with 4 additions and 1 deletions

View File

@ -1,11 +1,14 @@
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
vim.opt.cmdheight = 0
if os == "Windows_NT" then
vim.api.nvim_exec('language en_US', true)
end
-- Install package manager
-- https://github.com/folke/lazy.nvim
-- `:help lazy.nvim.txt` for more info
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
vim.fn.system {
'git',