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:
parent
4578afc68a
commit
b09c001954
@ -22,9 +22,11 @@ with final.pkgs.lib; let
|
|||||||
# ...
|
# ...
|
||||||
# }
|
# }
|
||||||
all-plugins = with pkgs.vimPlugins; [
|
all-plugins = with pkgs.vimPlugins; [
|
||||||
|
# Debugger/task runner
|
||||||
nvim-dap # Debuggerhttps://github.com/mfussenegger/nvim-dap
|
nvim-dap # Debuggerhttps://github.com/mfussenegger/nvim-dap
|
||||||
nvim-dap-ui # Debugger UI https://github.com/rcarriga/nvim-dap-ui/
|
nvim-dap-ui # Debugger UI https://github.com/rcarriga/nvim-dap-ui/
|
||||||
overseer-nvim # A task runner and job management plugin for Neovim | https://github.com/stevearc/overseer.nvim
|
overseer-nvim # A task runner and job management plugin for Neovim | https://github.com/stevearc/overseer.nvim
|
||||||
|
# ^ Debugger/task runner
|
||||||
|
|
||||||
# Themes
|
# Themes
|
||||||
tokyonight-nvim # https://github.com/folke/tokyonight.nvim
|
tokyonight-nvim # https://github.com/folke/tokyonight.nvim
|
||||||
@ -89,6 +91,7 @@ with final.pkgs.lib; let
|
|||||||
comment-nvim # https://github.com/numToStr/Comment.nvim
|
comment-nvim # https://github.com/numToStr/Comment.nvim
|
||||||
neo-tree-nvim # https://github.com/numToStr/Comment.nvim
|
neo-tree-nvim # https://github.com/numToStr/Comment.nvim
|
||||||
aerial-nvim # Plugin for a code outline window | https://github.com/stevearc/aerial.nvim
|
aerial-nvim # Plugin for a code outline window | https://github.com/stevearc/aerial.nvim
|
||||||
|
is-vim # incremental search improved | https://github.com/haya14busa/is.vim
|
||||||
# ^ navigation/editing enhancement plugins
|
# ^ navigation/editing enhancement plugins
|
||||||
|
|
||||||
# Useful utilities
|
# Useful utilities
|
||||||
|
@ -124,8 +124,8 @@ require('lualine').setup {
|
|||||||
-- newfile_status = true,
|
-- newfile_status = true,
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
lualine_y = {'searchcount','selectioncount'},
|
lualine_y = {'location'},
|
||||||
lualine_z = {'location'},
|
lualine_z = {'searchcount','selectioncount'},
|
||||||
},
|
},
|
||||||
extensions = { 'fugitive', 'fzf', 'toggleterm', 'quickfix' },
|
extensions = { 'fugitive', 'fzf', 'toggleterm', 'quickfix' },
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user