mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 08:55:16 -06:00
add oil, colors
This commit is contained in:
parent
916bb1bf5d
commit
6e5ab46a79
11 changed files with 139 additions and 72 deletions
35
plugins.nix
Normal file
35
plugins.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{pkgs, ...}:
|
||||
{
|
||||
base = with pkgs.vimPlugins; [
|
||||
telescope-nvim
|
||||
telescope-fzf-native-nvim
|
||||
toggleterm-nvim
|
||||
mini-nvim
|
||||
gitsigns-nvim
|
||||
oil-nvim
|
||||
neogit
|
||||
rose-pine
|
||||
];
|
||||
treesitter = with pkgs.vimPlugins; [
|
||||
(nvim-treesitter.withPlugins
|
||||
(
|
||||
plugins: with plugins; [
|
||||
tree-sitter-bash
|
||||
tree-sitter-c
|
||||
tree-sitter-dockerfile
|
||||
tree-sitter-go
|
||||
tree-sitter-javascript
|
||||
tree-sitter-json
|
||||
tree-sitter-lua
|
||||
tree-sitter-markdown
|
||||
tree-sitter-markdown-inline
|
||||
tree-sitter-nix
|
||||
tree-sitter-php
|
||||
tree-sitter-python
|
||||
tree-sitter-yaml
|
||||
]
|
||||
)
|
||||
)
|
||||
nvim-treesitter-textobjects
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue