summaryrefslogtreecommitdiff
path: root/lua/core
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2024-05-23 19:10:50 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2024-05-23 19:10:50 -0400
commitc95b9108768ca734fa94ed99b0979f56f097d4bf (patch)
tree94b2c7afbd1c5e04d6ac638c57e9fe21634b2fae /lua/core
parent04042907c77f9790f78df0b6af52dbdd6e89ca55 (diff)
Commented telescope in case I want it (harpoon)
Diffstat (limited to 'lua/core')
-rw-r--r--lua/core/init.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/core/init.lua b/lua/core/init.lua
index cd99ee5..89623fc 100644
--- a/lua/core/init.lua
+++ b/lua/core/init.lua
@@ -13,7 +13,7 @@ vim.opt.expandtab=true
vim.opt.foldmethod="marker" --- For `{{{` & `}}}` folding
vim.opt.complete:append("kspell")
vim.opt.spelllang="fr" -- why does french exist...
-vim.api.nvim_set_keymap("n","Y","y$", {}) -- Better motion for `Y`
+vim.api.nvim_set_keymap("n","Y","y$", {}) -- What should have been `Y`
vim.api.nvim_set_keymap("t", "<Esc>", "<C-\\><C-n>", {}) -- terminal mode Esc
vim.keymap.set("v", "<s-l>", ":m '>+1<CR>gv=gv")
@@ -23,4 +23,3 @@ vim.keymap.set("v", "<s-h>", ":m '<-2<CR>gv=gv")
vim.g.netrw_liststyle = 3
vim.g.netrw_banner = 0
vim.g.netrw_bufsettings = "noma nomod nu nobl nowrap ro"
-