Compare commits

...

2 commits

Author SHA1 Message Date
5b2a2b4dff Starting to split the config 2025-01-17 09:33:04 -05:00
dbc4424893 If-block for non-VSCode usage 2025-01-16 20:38:22 -05:00
3 changed files with 66 additions and 62 deletions

View file

@ -1,5 +1,6 @@
HOME = os.getenv("HOME")
if not vim.g.vscode then
-- Configure the clipboard to access the "+ and "* registers
-- N.B. JavaScript copy buttons on the web do not necessarily work as expected
vim.opt.clipboard = "unnamedplus,unnamed"
@ -77,6 +78,7 @@ vim.api.nvim_create_autocmd(
command = "set nonumber"
}
)
end
-- lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"

2
nvim/lua/plugins.lua Normal file
View file

@ -0,0 +1,2 @@
return {
}