Fix paths

This commit is contained in:
Oliver Davies 2024-07-09 22:00:00 +01:00
parent 70c8eade7c
commit 02dd935511
2 changed files with 2 additions and 6 deletions

View file

@ -27,7 +27,7 @@ local settings = {
signcolumn = "yes:1", signcolumn = "yes:1",
smartindent = true, smartindent = true,
softtabstop = 2, softtabstop = 2,
spellfile = "/home/opdavies/Code/personal/opdavies.nvim/spell/en.utf-8.add", spellfile = "/home/opdavies/Code/opdavies.nvim/spell/en.utf-8.add",
swapfile = false, swapfile = false,
syntax = "on", syntax = "on",
tabstop = 2, tabstop = 2,

View file

@ -152,8 +152,4 @@ vim.keymap.set("i", "<c-l>", function()
end end
end) end)
vim.keymap.set( vim.keymap.set("n", "<leader><leader>s", "<cmd>source ~/Code/opdavies.nvim/after/plugin/luasnip.lua<CR>")
"n",
"<leader><leader>s",
"<cmd>source ~/Code/personal/opdavies.nvim/after/plugin/luasnip.lua<CR>"
)