cosmetics

This commit is contained in:
Oliver Ladner 2023-11-21 13:54:47 +01:00
commit 5d7abedb6e
3 changed files with 7 additions and 2 deletions

View file

@ -39,11 +39,13 @@ This is more accurate than `nvim --startuptime`.
| --- | --- | --- |
| **lazy.nvim** | Package manager | <https://github.com/folke/lazy.nvim> |
| **telescope.nvim** | Find, Filter, Preview, Pick | <https://github.com/nvim-telescope/telescope.nvim> |
| **telescope-fzf-native.nvim** | Fuzzy finder for Telescope | <https://github.com/nvim-telescope/telescope-fzf-native.nvim> |
| **nvim-treesitter** | Parser/syntax highlighting | <https://github.com/nvim-treesitter/nvim-treesitter> |
| **nvim-treesitter-context** | Shows current line context | <https://github.com/nvim-treesitter/nvim-treesitter-context> |
| **nvim-treesitter-textobjects** | ? | <https://github.com/nvim-treesitter/nvim-treesitter-textobjects> |
| **vim-sleuth** | Heuristically set tab/shift mode | <https://github.com/tpope/vim-sleuth> |
| **nightfox.nvim** | Theme | <https://github.com/EdenEast/nightfox.nvim> |
| **nightfox.nvim** | Theme with treesitter/lsp support | <https://github.com/EdenEast/nightfox.nvim> |
| **lualine.nvim** | Status line | <https://github.com/nvim-lualine/lualine.nvim> |
| **nvim-web-devicons** | filetype glyphs (icons) for plugins | <https://github.com/nvim-tree/nvim-web-devicons> |
| **which-key.nvim** | Shows contextual key bindings | <https://github.com/folke/which-key.nvim> |
@ -93,3 +95,4 @@ This is more accurate than `nvim --startuptime`.
- Directory browsing with Telescope
- Solution to show short Git logs (potentially without fugitive)
- Hinting for trailing spaces (EOL) and blank space on line
- LSP setup/config (mason?), consume <https://blog.pabuisson.com/2022/08/neovim-modern-features-treesitter-and-lsp/>

View file

@ -5,7 +5,8 @@ return {
options = {
icons_enabled = true,
theme = 'auto',
component_separators = '',
--component_separators = '⋮',
component_separators = '',
section_separators = { left = '', right = '' },
},
},

View file

@ -16,6 +16,7 @@ return {
-- language list: https://github.com/nvim-treesitter/nvim-treesitter#supported-languages
ensure_installed = {
"lua",
"comment",
"vim",
"vimdoc",
"bash",