feat(plugins, keymaps): Add plugins, move plugins to nix, update keymaps
Added: - [aerial.nvim](https://github.com/stevearc/aerial.nvim) - [better-escape.nvim](https://github.com/max397574/better-escape.nvim) - [dressing.nvim](https://github.com/stevearc/dressing.nvim) - [ident-blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim) - [nvim-notify](https://github.com/rcarriga/nvim-notify) - [todo-comments.nvim](https://github.com/folke/todo-comments.nvim) Moved plugin source from Github to Nix: - [Comment.nvim](https://github.com/numToStr/Comment.nvim) - [neo-tree.nvim](https://github.com/numToStr/Comment.nvim) Mapped windown switching to `<C-h`... instead of `<M-h`... Moved some coliding lsp keymaps under the `<leader>l` group - Eg. `<leader>ls` for signature help
This commit is contained in:
parent
1ac92922ee
commit
65dea4ed80
9 changed files with 70 additions and 52 deletions
|
@ -66,9 +66,12 @@ with final.pkgs.lib; let
|
|||
|
||||
# UI
|
||||
lualine-nvim # Status line | https://github.com/nvim-lualine/lualine.nvim/
|
||||
dressing-nvim # Improve the default vim.ui interfaces | https://github.com/stevearc/dressing.nvim
|
||||
nvim-navic # Add LSP location to lualine | https://github.com/SmiteshP/nvim-navic
|
||||
statuscol-nvim # Status column | https://github.com/luukvbaal/statuscol.nvim/
|
||||
nvim-treesitter-context # nvim-treesitter-context
|
||||
indent-blankline-nvim # Indent guides for Neovim | https://github.com/lukas-reineke/indent-blankline.nvim
|
||||
nvim-notify # A fancy, configurable, notification manager for NeoVim | https://github.com/rcarriga/nvim-notify
|
||||
# ^ UI
|
||||
|
||||
# language support
|
||||
|
@ -80,12 +83,15 @@ with final.pkgs.lib; let
|
|||
nvim-surround # https://github.com/kylechui/nvim-surround/
|
||||
nvim-treesitter-textobjects # https://github.com/nvim-treesitter/nvim-treesitter-textobjects/
|
||||
nvim-ts-context-commentstring # https://github.com/joosepalviste/nvim-ts-context-commentstring/
|
||||
(mkNvimPlugin inputs.comment-nvim "Comment.nvim") # https://github.com/numToStr/Comment.nvim
|
||||
(mkNvimPlugin inputs.neotree "neo-tree.nvim") # https://github.com/numToStr/Comment.nvim
|
||||
comment-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
|
||||
# ^ navigation/editing enhancement plugins
|
||||
|
||||
# Useful utilities
|
||||
todo-comments-nvim # Highlight, list and search todo comments in your projects | https://github.com/folke/todo-comments.nvim
|
||||
nvim-unception # Prevent nested neovim sessions | nvim-unception
|
||||
better-escape-nvim # Map keys without delay when typing | https://github.com/max397574/better-escape.nvim
|
||||
# ^ Useful utilities
|
||||
|
||||
# libraries that other plugins depend on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue