nvim: mini + tree-sitter setup
This commit is contained in:
parent
f3d1d92840
commit
cdeb64a7e4
2 changed files with 181 additions and 122 deletions
|
@ -25,18 +25,39 @@
|
|||
nodePackages.typescript-language-server
|
||||
nodePackages.bash-language-server
|
||||
rust-analyzer
|
||||
rustfmt
|
||||
shellcheck
|
||||
shfmt
|
||||
stylua
|
||||
tree-sitter
|
||||
tree-sitter-grammars.tree-sitter-bash
|
||||
tree-sitter-grammars.tree-sitter-yaml
|
||||
tree-sitter-grammars.tree-sitter-c
|
||||
tree-sitter-grammars.tree-sitter-comment
|
||||
tree-sitter-grammars.tree-sitter-css
|
||||
tree-sitter-grammars.tree-sitter-cue
|
||||
tree-sitter-grammars.tree-sitter-fish
|
||||
tree-sitter-grammars.tree-sitter-gdscript
|
||||
tree-sitter-grammars.tree-sitter-go
|
||||
tree-sitter-grammars.tree-sitter-markdown
|
||||
tree-sitter-grammars.tree-sitter-lua
|
||||
tree-sitter-grammars.tree-sitter-gomod
|
||||
tree-sitter-grammars.tree-sitter-hcl
|
||||
tree-sitter-grammars.tree-sitter-html
|
||||
tree-sitter-grammars.tree-sitter-vim
|
||||
tree-sitter-grammars.tree-sitter-javascript
|
||||
tree-sitter-grammars.tree-sitter-json
|
||||
tree-sitter-grammars.tree-sitter-lua
|
||||
tree-sitter-grammars.tree-sitter-markdown
|
||||
tree-sitter-grammars.tree-sitter-nix
|
||||
tree-sitter-grammars.tree-sitter-proto
|
||||
tree-sitter-grammars.tree-sitter-rego
|
||||
tree-sitter-grammars.tree-sitter-rust
|
||||
tree-sitter-grammars.tree-sitter-scss
|
||||
tree-sitter-grammars.tree-sitter-sql
|
||||
tree-sitter-grammars.tree-sitter-svelte
|
||||
tree-sitter-grammars.tree-sitter-toml
|
||||
tree-sitter-grammars.tree-sitter-tsx
|
||||
tree-sitter-grammars.tree-sitter-typescript
|
||||
tree-sitter-grammars.tree-sitter-vim
|
||||
tree-sitter-grammars.tree-sitter-yaml
|
||||
tree-sitter-grammars.tree-sitter-zig
|
||||
vscode-langservers-extracted
|
||||
];
|
||||
|
||||
|
@ -45,6 +66,7 @@
|
|||
go-nvim
|
||||
rustaceanvim
|
||||
targets-vim
|
||||
ts-comments-nvim
|
||||
|
||||
{
|
||||
plugin = pkgs.vimUtils.buildVimPlugin {
|
||||
|
@ -85,12 +107,26 @@
|
|||
}
|
||||
|
||||
{
|
||||
plugin = nvim-treesitter.withAllGrammars; # Treesitter
|
||||
plugin = nvim-treesitter-context;
|
||||
type = "lua";
|
||||
config = ''
|
||||
vim.keymap.set('n', '<space>ut', "<cmd>TSContextToggle<cr>", {noremap = true, silent = true, desc = "TS Context"})
|
||||
'';
|
||||
}
|
||||
|
||||
{
|
||||
plugin = nvim-treesitter.withAllGrammars;
|
||||
type = "lua";
|
||||
config = ''
|
||||
require'nvim-treesitter.configs'.setup {
|
||||
highlight = { enable = true, },
|
||||
indent = { enable = true },
|
||||
textobjects = {
|
||||
select = {
|
||||
enable = true,
|
||||
lookahead = true,
|
||||
},
|
||||
},
|
||||
}
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
require('mini.ai').setup()
|
||||
require('mini.align').setup()
|
||||
require('mini.bracketed').setup()
|
||||
require('mini.comment').setup()
|
||||
require('mini.completion').setup()
|
||||
require('mini.diff').setup()
|
||||
require('mini.extra').setup()
|
||||
|
@ -11,20 +12,15 @@
|
|||
require('mini.jump').setup()
|
||||
require('mini.surround').setup()
|
||||
require('mini.splitjoin').setup()
|
||||
require('mini.trailspace').setup()
|
||||
|
||||
-- require('mini.bufremove').setup()
|
||||
local bufremove = require('mini.bufremove')
|
||||
bufremove.setup()
|
||||
vim.keymap.set('n', '<space>bd', bufremove.delete, opts("Delete"))
|
||||
|
||||
require('mini.files').setup()
|
||||
local oil_style = function()
|
||||
if not MiniFiles.close() then
|
||||
MiniFiles.open(vim.api.nvim_buf_get_name(0))
|
||||
MiniFiles.reveal_cwd()
|
||||
end
|
||||
end
|
||||
vim.keymap.set('n', '-', oil_style, opts("File Explorer"));
|
||||
require('mini.cursorword').setup({
|
||||
delay = 800
|
||||
})
|
||||
|
||||
local hipatterns = require('mini.hipatterns')
|
||||
hipatterns.setup({ -- highlight strings and colors
|
||||
|
@ -40,6 +36,15 @@
|
|||
}
|
||||
})
|
||||
|
||||
local indentscope = require('mini.indentscope')
|
||||
indentscope.setup({
|
||||
draw = {
|
||||
delay = 10,
|
||||
animation = indentscope.gen_animation.none(),
|
||||
},
|
||||
symbol = '│',
|
||||
})
|
||||
|
||||
require('mini.jump2d').setup({
|
||||
mappings = {
|
||||
start_jumping = 'gw'
|
||||
|
@ -57,27 +62,23 @@
|
|||
MiniPick.registry.files_root = function(local_opts)
|
||||
local root_patterns = { ".jj", ".git" }
|
||||
local root_dir = vim.fs.dirname(vim.fs.find(root_patterns, { upward = true })[1])
|
||||
local opts = { source = { cwd = root_dir, tool = "ripgrep"} }
|
||||
local_opts.cwd = root_dir
|
||||
local_opts.tool = "rg"
|
||||
return MiniPick.builtin.files(local_opts, opts)
|
||||
return MiniPick.builtin.files(local_opts, { source = { cwd = root_dir, tool = "ripgrep" } })
|
||||
end
|
||||
MiniPick.registry.grep_live_root = function(local_opts)
|
||||
local root_patterns = { ".jj", ".git" }
|
||||
local root_dir = vim.fs.dirname(vim.fs.find(root_patterns, { upward = true })[1])
|
||||
local opts = { source = { cwd = root_dir } }
|
||||
local_opts.cwd = root_dir
|
||||
return MiniPick.builtin.grep_live(local_opts, opts)
|
||||
return MiniPick.builtin.grep_live(local_opts, { source = { cwd = root_dir } })
|
||||
end
|
||||
vim.keymap.set('n', '<space>/', "<cmd>Pick grep_live_root<cr>", opts("Live Grep"))
|
||||
vim.keymap.set('n', '<space>F', "<cmd>Pick files<cr>", opts("Find in CWD"))
|
||||
vim.keymap.set('n', '<space>fF', "<cmd>Pick files<cr>", opts("FindCWD"))
|
||||
vim.keymap.set('n', '<space>ff', "<cmd>Pick files_root<cr>", opts("Find"))
|
||||
vim.keymap.set('n', '<space>fr', "<cmd>Pick oldfiles<cr>", opts("Recent"))
|
||||
vim.keymap.set('n', '<space>bb', "<cmd>Pick buffers<cr>", opts("Switch"))
|
||||
vim.keymap.set('n', '<space>d', "<cmd>Pick diagnostics<cr>", opts("Diagnostics"))
|
||||
vim.keymap.set('n', '<tab>', "<cmd>Pick buffers include_current=false<cr>", opts("Buffers"))
|
||||
vim.keymap.set('n', "<space>'", "<cmd>Pick resume<cr>", opts("Last Picker"))
|
||||
vim.keymap.set('n', "<space>g", "<cmd>Pick git_commits<cr>", opts("Git Commits"))
|
||||
|
||||
|
||||
local miniclue = require('mini.clue')
|
||||
|
@ -131,3 +132,25 @@
|
|||
}
|
||||
})
|
||||
|
||||
local notify_win_config = function()
|
||||
local has_statusline = vim.o.laststatus > 0
|
||||
local pad = vim.o.cmdheight + (has_statusline and 1 or 0)
|
||||
return { anchor = 'SE', border = 'rounded', col = vim.o.columns, row = vim.o.lines - pad }
|
||||
end
|
||||
require('mini.notify').setup({
|
||||
window = {
|
||||
config = notify_win_config,
|
||||
winblend = 0,
|
||||
},
|
||||
})
|
||||
|
||||
require('mini.starter').setup({
|
||||
header =
|
||||
[[ ______ _
|
||||
(_____ \ _ (_)
|
||||
_____) )___| |_ ____ ____ _ ____
|
||||
| ____/ _ | _)/ _ |/ _ | |/ _ |
|
||||
| | ( ( | | |_( ( | ( ( | | ( ( | |
|
||||
|_| \_||_|\___)_||_|\_|| |_|\_||_|
|
||||
(_____|]]
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue