diff options
author | max397574 <[email protected]> | 2022-02-05 19:51:33 +0100 |
---|---|---|
committer | max397574 <[email protected]> | 2022-02-05 19:51:33 +0100 |
commit | 48475385a7e3b50b9fe6a0921c428cbc86d45df9 (patch) | |
tree | bf6ee44e9734730027cdf19d84244ca9c4b4c904 /lua/startup/utils.lua | |
parent | 2b6865da53e2bb16710216bbabf7bbd6eef448f8 (diff) | |
parent | d4fa5c4920659a88fc89c32029556e12b8556630 (diff) |
Merge branch 'master' of https://github.com/startup-nvim/startup.nvim
Diffstat (limited to 'lua/startup/utils.lua')
-rw-r--r-- | lua/startup/utils.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/startup/utils.lua b/lua/startup/utils.lua index fc3cabe..0ebde8e 100644 --- a/lua/startup/utils.lua +++ b/lua/startup/utils.lua @@ -510,7 +510,7 @@ function U.set_buf_options() local tab_line = vim.api.nvim_get_option("showtabline") set_buf_opt(0, "bufhidden", "wipe") set_buf_opt(0, "buftype", "nofile") - vim.cmd([[set wrap]]) + vim.cmd([[setlocal wrap]]) if settings.options.disable_statuslines then vim.opt.laststatus = 0 vim.opt.showtabline = 0 |