Skip to content

Commit

Permalink
🐛 Fix: Auto save *.exs
Browse files Browse the repository at this point in the history
  • Loading branch information
Nguyen-Hoang-Nam committed Aug 28, 2022
1 parent 4b64faf commit 4f6299a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lua/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ option.splitbelow = true
option.laststatus = 3

option.foldcolumn = "1"
option.foldlevel = 99 -- Using ufo provider need a large value, feel free to decrease the value
option.foldlevel = 10 -- Using ufo provider need a large value, feel free to decrease the value
option.foldlevelstart = -1
option.foldenable = true
option.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal"

-- NOTE: Local to window
option.number = true
Expand Down
2 changes: 1 addition & 1 deletion lua/utils/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ M.map_filetype_filename = {
cpp = "*.cpp,*.hpp",
dart = "*.dart",
dockerfile = "Dockerfile",
elixir = "*.ex",
elixir = "*.ex,*.exs",
go = "*.go",
haskell = "*.hs",
html = "*.html",
Expand Down

0 comments on commit 4f6299a

Please sign in to comment.