documenting + found a lost boy

This commit is contained in:
godot 2024-04-18 15:42:14 +02:00
parent 1063c20b6c
commit 8eaeeb6bcf
2 changed files with 12 additions and 1 deletions

View File

@ -13,9 +13,13 @@
### Tutorials used
- [YT - typecraft serie](https://www.youtube.com/watch?v=zHTeCSVAFNY&list=PLsz00TDipIffreIaUNk64KxTIkQaGguqn)
- [Primegeon](https://www.youtube.com/watch?v=w7i4amO_zaE&t=81s)
## Cool plugins to add
- https://github.com/epwalsh/obsidian.nvim (Obsidian in Nvim)
### Tutorials foud
- [Primegeon](https://www.youtube.com/watch?v=w7i4amO_zaE&t=81s)
## Ideas to do
- multiple buffers open in one widnow
- move lualine on the top

View File

@ -0,0 +1,7 @@
return {
'christoomey/vim-tmux-navigator',
vim.keymap.set('n', 'C-h', ':TmuxNavigateLeft<CR>'),
vim.keymap.set('n', 'C-j', ':TmuxNavigateDown<CR>'),
vim.keymap.set('n', 'C-k', ':TmuxNavigateUp<CR>'),
vim.keymap.set('n', 'C-l', ':TmuxNavigateRight<CR>'),
}