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.typescript-language-server
|
||||||
nodePackages.bash-language-server
|
nodePackages.bash-language-server
|
||||||
rust-analyzer
|
rust-analyzer
|
||||||
|
rustfmt
|
||||||
shellcheck
|
shellcheck
|
||||||
shfmt
|
shfmt
|
||||||
stylua
|
stylua
|
||||||
tree-sitter
|
tree-sitter
|
||||||
tree-sitter-grammars.tree-sitter-bash
|
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-go
|
||||||
tree-sitter-grammars.tree-sitter-markdown
|
tree-sitter-grammars.tree-sitter-gomod
|
||||||
tree-sitter-grammars.tree-sitter-lua
|
tree-sitter-grammars.tree-sitter-hcl
|
||||||
tree-sitter-grammars.tree-sitter-html
|
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-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
|
vscode-langservers-extracted
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -45,6 +66,7 @@
|
||||||
go-nvim
|
go-nvim
|
||||||
rustaceanvim
|
rustaceanvim
|
||||||
targets-vim
|
targets-vim
|
||||||
|
ts-comments-nvim
|
||||||
|
|
||||||
{
|
{
|
||||||
plugin = pkgs.vimUtils.buildVimPlugin {
|
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";
|
type = "lua";
|
||||||
config = ''
|
config = ''
|
||||||
require'nvim-treesitter.configs'.setup {
|
require'nvim-treesitter.configs'.setup {
|
||||||
highlight = { enable = true, },
|
highlight = { enable = true, },
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
textobjects = {
|
||||||
|
select = {
|
||||||
|
enable = true,
|
||||||
|
lookahead = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,133 +1,156 @@
|
||||||
local opts = function(label)
|
local opts = function(label)
|
||||||
return {noremap = true, silent = true, desc = label}
|
return { noremap = true, silent = true, desc = label }
|
||||||
end
|
end
|
||||||
require('mini.ai').setup()
|
require('mini.ai').setup()
|
||||||
require('mini.align').setup()
|
require('mini.align').setup()
|
||||||
require('mini.bracketed').setup()
|
require('mini.bracketed').setup()
|
||||||
require('mini.completion').setup()
|
require('mini.comment').setup()
|
||||||
require('mini.diff').setup()
|
require('mini.completion').setup()
|
||||||
require('mini.extra').setup()
|
require('mini.diff').setup()
|
||||||
require('mini.icons').setup()
|
require('mini.extra').setup()
|
||||||
require('mini.jump').setup()
|
require('mini.icons').setup()
|
||||||
require('mini.surround').setup()
|
require('mini.jump').setup()
|
||||||
require('mini.splitjoin').setup()
|
require('mini.surround').setup()
|
||||||
|
require('mini.splitjoin').setup()
|
||||||
|
require('mini.trailspace').setup()
|
||||||
|
|
||||||
-- require('mini.bufremove').setup()
|
local bufremove = require('mini.bufremove')
|
||||||
local bufremove = require('mini.bufremove')
|
bufremove.setup()
|
||||||
bufremove.setup()
|
vim.keymap.set('n', '<space>bd', bufremove.delete, opts("Delete"))
|
||||||
vim.keymap.set('n', '<space>bd', bufremove.delete, opts("Delete"))
|
|
||||||
|
|
||||||
require('mini.files').setup()
|
require('mini.cursorword').setup({
|
||||||
local oil_style = function()
|
delay = 800
|
||||||
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"));
|
|
||||||
|
|
||||||
local hipatterns = require('mini.hipatterns')
|
local hipatterns = require('mini.hipatterns')
|
||||||
hipatterns.setup({ -- highlight strings and colors
|
hipatterns.setup({ -- highlight strings and colors
|
||||||
highlighters = {
|
highlighters = {
|
||||||
-- Highlight standalone 'FIXME', 'HACK', 'TODO', 'NOTE'
|
-- Highlight standalone 'FIXME', 'HACK', 'TODO', 'NOTE'
|
||||||
fixme = { pattern = '%f[%w]()FIXME()%f[%W]', group = 'MiniHipatternsFixme' },
|
fixme = { pattern = '%f[%w]()FIXME()%f[%W]', group = 'MiniHipatternsFixme' },
|
||||||
hack = { pattern = '%f[%w]()HACK()%f[%W]', group = 'MiniHipatternsHack' },
|
hack = { pattern = '%f[%w]()HACK()%f[%W]', group = 'MiniHipatternsHack' },
|
||||||
todo = { pattern = '%f[%w]()TODO()%f[%W]', group = 'MiniHipatternsTodo' },
|
todo = { pattern = '%f[%w]()TODO()%f[%W]', group = 'MiniHipatternsTodo' },
|
||||||
note = { pattern = '%f[%w]()NOTE()%f[%W]', group = 'MiniHipatternsNote' },
|
note = { pattern = '%f[%w]()NOTE()%f[%W]', group = 'MiniHipatternsNote' },
|
||||||
|
|
||||||
-- Highlight hex color strings (`#rrggbb`) using that color
|
-- Highlight hex color strings (`#rrggbb`) using that color
|
||||||
hex_color = hipatterns.gen_highlighter.hex_color(),
|
hex_color = hipatterns.gen_highlighter.hex_color(),
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
require('mini.jump2d').setup({
|
local indentscope = require('mini.indentscope')
|
||||||
mappings = {
|
indentscope.setup({
|
||||||
start_jumping = 'gw'
|
draw = {
|
||||||
}
|
delay = 10,
|
||||||
})
|
animation = indentscope.gen_animation.none(),
|
||||||
|
},
|
||||||
|
symbol = '│',
|
||||||
|
})
|
||||||
|
|
||||||
require('mini.pick').setup({
|
require('mini.jump2d').setup({
|
||||||
mappings = {
|
mappings = {
|
||||||
move_down = '<tab>'
|
start_jumping = 'gw'
|
||||||
},
|
}
|
||||||
options = {
|
})
|
||||||
use_cache = true
|
|
||||||
}
|
require('mini.pick').setup({
|
||||||
})
|
mappings = {
|
||||||
MiniPick.registry.files_root = function(local_opts)
|
move_down = '<tab>'
|
||||||
local root_patterns = { ".jj", ".git" }
|
},
|
||||||
local root_dir = vim.fs.dirname(vim.fs.find(root_patterns, { upward = true })[1])
|
options = {
|
||||||
local opts = { source = { cwd = root_dir, tool = "ripgrep"} }
|
use_cache = true
|
||||||
local_opts.cwd = root_dir
|
}
|
||||||
local_opts.tool = "rg"
|
})
|
||||||
return MiniPick.builtin.files(local_opts, opts)
|
MiniPick.registry.files_root = function(local_opts)
|
||||||
end
|
local root_patterns = { ".jj", ".git" }
|
||||||
MiniPick.registry.grep_live_root = function(local_opts)
|
local root_dir = vim.fs.dirname(vim.fs.find(root_patterns, { upward = true })[1])
|
||||||
local root_patterns = { ".jj", ".git" }
|
local_opts.cwd = root_dir
|
||||||
local root_dir = vim.fs.dirname(vim.fs.find(root_patterns, { upward = true })[1])
|
local_opts.tool = "rg"
|
||||||
local opts = { source = { cwd = root_dir } }
|
return MiniPick.builtin.files(local_opts, { source = { cwd = root_dir, tool = "ripgrep" } })
|
||||||
local_opts.cwd = root_dir
|
end
|
||||||
return MiniPick.builtin.grep_live(local_opts, opts)
|
MiniPick.registry.grep_live_root = function(local_opts)
|
||||||
end
|
local root_patterns = { ".jj", ".git" }
|
||||||
vim.keymap.set('n', '<space>/', "<cmd>Pick grep_live_root<cr>", opts("Live Grep"))
|
local root_dir = vim.fs.dirname(vim.fs.find(root_patterns, { upward = true })[1])
|
||||||
vim.keymap.set('n', '<space>F', "<cmd>Pick files<cr>", opts("Find in CWD"))
|
local_opts.cwd = root_dir
|
||||||
vim.keymap.set('n', '<space>ff', "<cmd>Pick files_root<cr>", opts("Find"))
|
return MiniPick.builtin.grep_live(local_opts, { source = { cwd = root_dir } })
|
||||||
vim.keymap.set('n', '<space>fr', "<cmd>Pick oldfiles<cr>", opts("Recent"))
|
end
|
||||||
vim.keymap.set('n', '<space>bb', "<cmd>Pick buffers<cr>", opts("Switch"))
|
vim.keymap.set('n', '<space>/', "<cmd>Pick grep_live_root<cr>", opts("Live Grep"))
|
||||||
vim.keymap.set('n', '<space>d', "<cmd>Pick diagnostics<cr>", opts("Diagnostics"))
|
vim.keymap.set('n', '<space>fF', "<cmd>Pick files<cr>", opts("FindCWD"))
|
||||||
vim.keymap.set('n', '<tab>', "<cmd>Pick buffers include_current=false<cr>", opts("Buffers"))
|
vim.keymap.set('n', '<space>ff', "<cmd>Pick files_root<cr>", opts("Find"))
|
||||||
vim.keymap.set('n', "<space>'", "<cmd>Pick resume<cr>", opts("Last Picker"))
|
vim.keymap.set('n', '<space>fr', "<cmd>Pick oldfiles<cr>", opts("Recent"))
|
||||||
vim.keymap.set('n', "<space>g", "<cmd>Pick git_commits<cr>", opts("Git Commits"))
|
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"))
|
||||||
|
|
||||||
|
|
||||||
local miniclue = require('mini.clue')
|
local miniclue = require('mini.clue')
|
||||||
miniclue.setup({ -- cute prompts about bindings
|
miniclue.setup({ -- cute prompts about bindings
|
||||||
triggers = {
|
triggers = {
|
||||||
{ mode = 'n', keys = '<Leader>' },
|
{ mode = 'n', keys = '<Leader>' },
|
||||||
{ mode = 'x', keys = '<Leader>' },
|
{ mode = 'x', keys = '<Leader>' },
|
||||||
{ mode = 'n', keys = '<space>' },
|
{ mode = 'n', keys = '<space>' },
|
||||||
{ mode = 'x', keys = '<space>' },
|
{ mode = 'x', keys = '<space>' },
|
||||||
|
|
||||||
-- Built-in completion
|
-- Built-in completion
|
||||||
{ mode = 'i', keys = '<C-x>' },
|
{ mode = 'i', keys = '<C-x>' },
|
||||||
|
|
||||||
-- `g` key
|
-- `g` key
|
||||||
{ mode = 'n', keys = 'g' },
|
{ mode = 'n', keys = 'g' },
|
||||||
{ mode = 'x', keys = 'g' },
|
{ mode = 'x', keys = 'g' },
|
||||||
|
|
||||||
-- Marks
|
-- Marks
|
||||||
{ mode = 'n', keys = "'" },
|
{ mode = 'n', keys = "'" },
|
||||||
{ mode = 'n', keys = '`' },
|
{ mode = 'n', keys = '`' },
|
||||||
{ mode = 'x', keys = "'" },
|
{ mode = 'x', keys = "'" },
|
||||||
{ mode = 'x', keys = '`' },
|
{ mode = 'x', keys = '`' },
|
||||||
|
|
||||||
-- Registers
|
-- Registers
|
||||||
{ mode = 'n', keys = '"' },
|
{ mode = 'n', keys = '"' },
|
||||||
{ mode = 'x', keys = '"' },
|
{ mode = 'x', keys = '"' },
|
||||||
{ mode = 'i', keys = '<C-r>' },
|
{ mode = 'i', keys = '<C-r>' },
|
||||||
{ mode = 'c', keys = '<C-r>' },
|
{ mode = 'c', keys = '<C-r>' },
|
||||||
|
|
||||||
-- Window commands
|
-- Window commands
|
||||||
{ mode = 'n', keys = '<C-w>' },
|
{ mode = 'n', keys = '<C-w>' },
|
||||||
|
|
||||||
-- `z` key
|
-- `z` key
|
||||||
{ mode = 'n', keys = 'z' },
|
{ mode = 'n', keys = 'z' },
|
||||||
{ mode = 'x', keys = 'z' },
|
{ mode = 'x', keys = 'z' },
|
||||||
|
|
||||||
-- Bracketed
|
-- Bracketed
|
||||||
{ mode = 'n', keys = '[' },
|
{ mode = 'n', keys = '[' },
|
||||||
{ mode = 'n', keys = ']' },
|
{ mode = 'n', keys = ']' },
|
||||||
},
|
},
|
||||||
clues = {
|
clues = {
|
||||||
miniclue.gen_clues.builtin_completion(),
|
miniclue.gen_clues.builtin_completion(),
|
||||||
miniclue.gen_clues.g(),
|
miniclue.gen_clues.g(),
|
||||||
miniclue.gen_clues.marks(),
|
miniclue.gen_clues.marks(),
|
||||||
miniclue.gen_clues.registers(),
|
miniclue.gen_clues.registers(),
|
||||||
miniclue.gen_clues.windows(),
|
miniclue.gen_clues.windows(),
|
||||||
miniclue.gen_clues.z(),
|
miniclue.gen_clues.z(),
|
||||||
},
|
},
|
||||||
window = {
|
window = {
|
||||||
delay = 15,
|
delay = 15,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
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