Files
lazyfox/lua/config/options.lua
Archie Fox 7f1d7f48dd Init commit
2025-07-25 13:09:33 +03:00

12 lines
455 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
O = vim.opt
O.swapfile = false
O.fileformat = "unix"
O.wrap = true
-- Не автокомментировать новые линии при переходе на новую строку
vim.cmd([[autocmd BufEnter * set fo-=c fo-=r fo-=o]])