feat(plugins,lualine): Added is.vim, moved winbar sections around

Added:
  - [is.vim](https://github.com/haya14busa/is.vim)
    - Clears search highligh when the cursor moves
- Swapped 'location' and 'searchcount' with 'selectioncount' for better
colors
This commit is contained in:
Jiří Štefka 2024-09-26 20:34:29 +02:00
parent 4578afc68a
commit b09c001954
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE
2 changed files with 5 additions and 2 deletions
nvim/plugin

View file

@ -124,8 +124,8 @@ require('lualine').setup {
-- newfile_status = true,
-- },
-- },
lualine_y = {'searchcount','selectioncount'},
lualine_z = {'location'},
lualine_y = {'location'},
lualine_z = {'searchcount','selectioncount'},
},
extensions = { 'fugitive', 'fzf', 'toggleterm', 'quickfix' },
}