diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/config/lazy.lua | 1 | ||||
-rw-r--r-- | lua/config/set.lua | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 5aed367..d29aa3a 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -21,7 +21,6 @@ require("lazy").setup({ "tpope/vim-eunuch", "mg979/vim-visual-multi", "jghauser/follow-md-links.nvim", - "m4xshen/autoclose.nvim", "stevearc/conform.nvim", "norcalli/nvim-colorizer.lua", "neovim/nvim-lspconfig", diff --git a/lua/config/set.lua b/lua/config/set.lua index 1616592..4e4e045 100644 --- a/lua/config/set.lua +++ b/lua/config/set.lua @@ -30,6 +30,7 @@ opt.backup = true opt.writebackup = true opt.undodir = home .. "/.local/state/nvim" -- https://stackoverflow.com/a/1625850 +-- TODO: Check if directory exists opt.backupdir = home .. "/.local/share/Trash/nvim//,." opt.directory = home .. "/.local/share/Trash/nvim//,." @@ -86,7 +87,7 @@ opt.history = 200 opt.smartindent = true opt.scrolloff = 8 -opt.spelllang = "en_us,nl" +-- opt.spelllang = "en_us,nl" opt.formatoptions = "tocqrnj" -- Get the current working directory, replace the $HOME portion of the path with ~, |