1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
-- 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 = ','
local function get_hostname()
local f = io.open("/etc/hostname")
local hostname = f:read("*a") or ""
f:close()
hostname = string.gsub(hostname, "\n$", "")
return hostname
end
-- Load plugins on devices other than RPi
if get_hostname() ~= "shoggoth" then
-- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
{ out, "WarningMsg" },
{ "\nPress any key to exit..." },
}, true, {})
vim.fn.getchar()
os.exit(1)
end
end
vim.opt.rtp:prepend(lazypath)
---@type LazySpec
local plugins = 'plugins'
-- Configure plugins.
require('lazy').setup(plugins, {
ui = { border = 'rounded' },
dev = { path = vim.g.projects_dir },
install = {
-- Do not automatically install on startup.
missing = false,
},
-- Don't bother me when tweaking plugins.
change_detection = { notify = false },
-- None of my plugins use luarocks so disable this.
rocks = {
enabled = false,
},
performance = {
rtp = {
-- Stuff I don't use.
disabled_plugins = {
'gzip',
'netrwPlugin',
'rplugin',
'tarPlugin',
'tohtml',
'tutor',
'zipPlugin',
},
},
},
})
vim.cmd.colorscheme "jellybeans-nvim"
end
-- Load plugins on devices other than RPi
|