1
Fork 0

Firenvim tweaks and upgraded slambda

This commit is contained in:
Matei Adriel 2023-02-26 00:42:40 +01:00
parent 391b43f9f9
commit 460a4facd0
No known key found for this signature in database
3 changed files with 10 additions and 21 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -30,9 +30,13 @@ function M.config()
end,
})
-- }}}
-- Disable status line
-- {{{ Disable status line
vim.opt.laststatus = 0
-- }}}
-- {{{ Enable wrapping
vim.opt.wrap = true
require("my.helpers.wrapMovement").setup()
-- }}}
end
return M