Skip to content

Commit

Permalink
added autosave
Browse files Browse the repository at this point in the history
  • Loading branch information
practicalwellbeing committed Apr 22, 2024
1 parent 12cadbc commit f632bc0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
4 changes: 3 additions & 1 deletion init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ vim.g.floaterm_height = 0.9
vim.g.markdown_folding = 1
-- start each file unfolded
vim.o.foldenable = false
-- hide syntax marks
vim.opt.conceallevel = 2

--
-- [[ Basic Keymaps ]]
Expand Down Expand Up @@ -855,7 +857,7 @@ require('lazy').setup {
-- other themes
{
'navarasu/onedark.nvim',
'gbprod/nord.nvim',
'shaunsingh/nord.nvim',
'catppuccin/nvim',
'rmehri01/onenord.nvim',
},
Expand Down
18 changes: 11 additions & 7 deletions lua/custom/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@
return {

{
'maxmx03/solarized.nvim',
lazy = false,
priority = 1000,
-- config = function()
-- vim.o.background = 'light' -- or 'light'
-- vim.cmd.colorscheme 'solarized'
-- end,
'pocco81/auto-save.nvim',
},

-- {
-- 'maxmx03/solarized.nvim',
-- lazy = false,
-- priority = 1000,
-- -- config = function()
-- -- vim.o.background = 'light' -- or 'light'
-- -- vim.cmd.colorscheme 'solarized'
-- -- end,
-- },

{
'folke/trouble.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
Expand Down

0 comments on commit f632bc0

Please sign in to comment.