wip
This commit is contained in:
parent
c72d894bbd
commit
0b833d555c
13 changed files with 719 additions and 46 deletions
|
@ -1,3 +1,6 @@
|
|||
-- allow use of system keyboard
|
||||
-- vim.opt.clipboard = "unnamedplus"
|
||||
|
||||
-- global status line
|
||||
vim.opt.laststatus = 3
|
||||
|
||||
|
@ -56,19 +59,3 @@ vim.opt.diffopt:append("linematch:20")
|
|||
|
||||
-- enable colors for opacity changes
|
||||
vim.o.termguicolors = true
|
||||
|
||||
function dump(o)
|
||||
if type(o) == 'table' then
|
||||
local s = '{ '
|
||||
for k,v in pairs(o) do
|
||||
if type(k) ~= 'number' then k = '"'..k..'"' end
|
||||
s = s .. '['..k..'] = ' .. dump(v) .. ','
|
||||
end
|
||||
return s .. '} '
|
||||
else
|
||||
return tostring(o)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
print("NIX FLAKE NVIM: nvim package count " .. dump(NVIM_PLUGIN_PATHS))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue