mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-06-12 23:16:50 +00:00
9 lines
234 B
Lua
9 lines
234 B
Lua
if vim.fn.has('nvim') == 0 then
|
|
return
|
|
end
|
|
|
|
vim.o.termguicolors = true
|
|
|
|
vim.g.mapleader = " " -- Make sure to set `mapleader` before lazy so your mappings are correct
|
|
vim.g.maplocalleader = "\\" -- Same for `maplocalleader`
|