Update from obsidian - thinkpad
Affected files: .obsidian/workspace.json projects/homelab.md projects/todos-notes/Improve Remote Access Setup.md projects/todos-notes/Improve dev tools.md projects/todos-notes/Rewrite neovim config.md projects/todos-notes/Update dots.md projects/todos-notes/Update keyboard config.md projects/todos-notes/Update tmux config.md projects/todos.md templates/todo.md
This commit is contained in:
parent
3f925e388f
commit
09ac6941c6
10 changed files with 159 additions and 62 deletions
41
projects/todos-notes/Rewrite neovim config.md
Normal file
41
projects/todos-notes/Rewrite neovim config.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
Initial Setup
|
||||
- [x] Setup with kickstart.nvim
|
||||
- [x] Refactor config
|
||||
- [x] migrate config from AstroNvim
|
||||
---
|
||||
|
||||
Especific stuff
|
||||
- [x] colorscheme definition -> catppuccin or tokyonight
|
||||
- [x] Review Telescope finders and keybindings
|
||||
- [x] Change Telescope layout for a vertical one
|
||||
- [ ] wichkey -> have astronvim configuration
|
||||
- [ ] Change filetree
|
||||
- [ ] indentations
|
||||
- [ ] [Format on save](https://github.com/mhartington/formatter.nvim)
|
||||
- [ ] [Linters Support](https://github.com/mfussenegger/nvim-lint)
|
||||
- [ ] Pretty (or more readable) diagnostic UI
|
||||
- [ ] .env support
|
||||
- [ ] flutter tools
|
||||
- [ ] [Comment Box](https://github.com/LudoPinelli/comment-box.nvim)
|
||||
- [ ] Bufferline -> Exclude quickfix
|
||||
- [ ] Git -> [Neogit](https://github.com/NeogitOrg/neogit/), [Fugitive](https://github.com/tpope/vim-fugitive)
|
||||
- [ ] TODO comments
|
||||
|
||||
---
|
||||
|
||||
Fix indentation:
|
||||
|
||||
```lua
|
||||
local indent = 2
|
||||
vim.opt.tabstop = indent
|
||||
vim.opt.shiftwidth = indent
|
||||
vim.opt.softtabstop = indent
|
||||
|
||||
vim.exec("retab")
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
Reference:
|
||||
- https://www.youtube.com/watch?v=NJDu_53T_4M&t=315s
|
||||
- https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/plugins/ui.lua
|
||||
Loading…
Add table
Add a link
Reference in a new issue