diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2023-04-02 17:46:22 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2023-04-02 17:46:22 +0200 |
commit | 9b7f95c5cce4b95cd54df0e1283214260a9b28f4 (patch) | |
tree | 5e78728f82591214d496f8b68726f9cbc0c4aac7 /lua | |
parent | 65f0046083b6239bdd76a81af63e3cad4516c75a (diff) |
Set file format and encoding
Diffstat (limited to 'lua')
-rw-r--r-- | lua/config.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/config.lua b/lua/config.lua index b5b9d89..582860f 100644 --- a/lua/config.lua +++ b/lua/config.lua @@ -18,6 +18,8 @@ vim.o.backup = false vim.o.incsearch = true vim.o.scrolloff = 5 vim.o.colorcolumn = "80,120" +vim.o.fileformat = "unix" +vim.o.encoding = "utf-8" vim.o.autoread = true vim.api.nvim_create_autocmd({ "BufEnter", "CursorHold", "CursorHoldI", "FocusGained" }, { |