ros2-vim/nvim/after/ftplugin/rst.lua
2023-12-04 16:20:32 +01:00

6 lines
202 B
Lua

vim.opt.wrap = true -- softwrap the text
vim.opt.linebreak = true -- do not break in the middle of words
vim.opt.tabstop = 3
vim.opt.softtabstop = 3
vim.opt.shiftwidth = 3
vim.opt.expandtab = true