Compare commits

...

2 Commits

2 changed files with 3 additions and 0 deletions

View File

@ -18,3 +18,4 @@ map("n", "<down>", '<cmd>echo "Use j to move!!"<CR>')
map("n", "<leader>z", ":ZenMode<cr>") --open ZenMode (distraction-free)
map("n", "<leader>l", ":LazyGit<cr>") -- open LazyGit
map("n", "<leader>f", ":lua MiniFiles.open()<cr>")
--map("n", "<leader>cmp), "\":lua require('cmp').setup.buffer { enabled = false }<cr>")

View File

@ -2,3 +2,5 @@ vim.opt.wrap = true
vim.opt.linebreak = true
vim.opt.textwidth = 0 --prevent vim from isnerting linebreaks
vim.opt.number = false
vim.opt.signcolumn = "no"