diff --git a/README.md b/README.md index bf24ad1..b1f0419 100644 --- a/README.md +++ b/README.md @@ -39,11 +39,13 @@ This is more accurate than `nvim --startuptime`. | --- | --- | --- | | **lazy.nvim** | Package manager | | | **telescope.nvim** | Find, Filter, Preview, Pick | | +| **telescope-fzf-native.nvim** | Fuzzy finder for Telescope | | | **nvim-treesitter** | Parser/syntax highlighting | | | **nvim-treesitter-context** | Shows current line context | | | **nvim-treesitter-textobjects** | ? | | | **vim-sleuth** | Heuristically set tab/shift mode | | -| **nightfox.nvim** | Theme | | +| **nightfox.nvim** | Theme with treesitter/lsp support | | +| **lualine.nvim** | Status line | | | **nvim-web-devicons** | filetype glyphs (icons) for plugins | | | **which-key.nvim** | Shows contextual key bindings | | @@ -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 diff --git a/lua/weeheavy/plugins/lualine.lua b/lua/weeheavy/plugins/lualine.lua index a0628ea..ee11a32 100644 --- a/lua/weeheavy/plugins/lualine.lua +++ b/lua/weeheavy/plugins/lualine.lua @@ -5,7 +5,8 @@ return { options = { icons_enabled = true, theme = 'auto', - component_separators = '⋮', + --component_separators = '⋮', + component_separators = '⁞', section_separators = { left = '', right = '' }, }, }, diff --git a/lua/weeheavy/plugins/treesitter.lua b/lua/weeheavy/plugins/treesitter.lua index f28b998..24d1cfe 100644 --- a/lua/weeheavy/plugins/treesitter.lua +++ b/lua/weeheavy/plugins/treesitter.lua @@ -16,6 +16,7 @@ return { -- language list: https://github.com/nvim-treesitter/nvim-treesitter#supported-languages ensure_installed = { "lua", + "comment", "vim", "vimdoc", "bash",