blob: 9552d30811e59ec5f0d66f92744665cc1cfcf3c2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
-- If neovim remote is not installed, install it
if vim.fn.executable('nvr') == 0 then
vim.api.nvim_command('!pip3 install --user --break-system-packages neovim-remote')
end
-- Change leader to a comma
vim.g.mapleader = ','
require("config.lazy")
vim.cmd.colorscheme "jellybeans-nvim"
|