Skip to content

Commit

Permalink
Added other themes + test file
Browse files Browse the repository at this point in the history
  • Loading branch information
practicalwellbeing committed Mar 4, 2024
1 parent 96c8ebc commit d6651f9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
11 changes: 9 additions & 2 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ require('lazy').setup {

-- Workspace
vim.keymap.set('n', '<leader>wf', '<cmd>Telescope neovim-project discover<cr>', { desc = 'Find workspace' })
vim.keymap.set('n', '<leader>wh', '<cmd>Telescope neovim-project history<cr>', { desc = 'Workspace history' })
vim.keymap.set('n', '<leader>wl', '<cmd>NeovimProjectLoadRecent<cr>', { desc = 'Load previous workspace' })
vim.keymap.set('n', '<leader>w,', '<cmd>Telescope neovim-project history<cr>', { desc = 'Workspace history' })
vim.keymap.set('n', '<leader>wr', '<cmd>NeovimProjectLoadRecent<cr>', { desc = 'Load last workspace' })
end,
},

Expand Down Expand Up @@ -812,6 +812,13 @@ require('lazy').setup {
end,
},

-- other themes
{
'navarasu/onedark.nvim',
'gbprod/nord.nvim',
'catppuccin/nvim',
},

-- Highlight todo, notes, etc in comments
{ 'folke/todo-comments.nvim', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },

Expand Down
11 changes: 11 additions & 0 deletions test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# how does this handle headlines?

## other headlines


*italics* and **bold**

- lists
- lists


0 comments on commit d6651f9

Please sign in to comment.