mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-16 07:27:47 +00:00
Compare commits
No commits in common. "5fbc72d697e53c8d4ff3cb8b7bbc60b6c96ffd02" and "54476b5a8bea713eb0480b4f3a66478cc15ef813" have entirely different histories.
5fbc72d697
...
54476b5a8b
3 changed files with 5 additions and 10 deletions
|
|
@ -1,10 +1,5 @@
|
||||||
# Release 0.8 {#sec-release-0.8}
|
# Release 0.8 {#sec-release-0.8}
|
||||||
|
|
||||||
## Breaking changes
|
|
||||||
|
|
||||||
- `git-conflict` keybinds are now prefixed with `<leader>` to avoid conflicting
|
|
||||||
with builtins
|
|
||||||
|
|
||||||
[NotAShelf](https://github.com/notashelf):
|
[NotAShelf](https://github.com/notashelf):
|
||||||
|
|
||||||
[typst-preview.nvim]: https://github.com/chomosuke/typst-preview.nvim
|
[typst-preview.nvim]: https://github.com/chomosuke/typst-preview.nvim
|
||||||
|
|
|
||||||
|
|
@ -12,10 +12,10 @@ in {
|
||||||
setupOpts = mkPluginSetupOption "git-conflict" {};
|
setupOpts = mkPluginSetupOption "git-conflict" {};
|
||||||
|
|
||||||
mappings = {
|
mappings = {
|
||||||
ours = mkMappingOption "Choose Ours [Git-Conflict]" "<leader>co";
|
ours = mkMappingOption "Choose Ours [Git-Conflict]" "co";
|
||||||
theirs = mkMappingOption "Choose Theirs [Git-Conflict]" "<leader>ct";
|
theirs = mkMappingOption "Choose Theirs [Git-Conflict]" "ct";
|
||||||
both = mkMappingOption "Choose Both [Git-Conflict]" "<leader>cb";
|
both = mkMappingOption "Choose Both [Git-Conflict]" "cb";
|
||||||
none = mkMappingOption "Choose None [Git-Conflict]" "<leader>c0";
|
none = mkMappingOption "Choose None [Git-Conflict]" "c0";
|
||||||
prevConflict = mkMappingOption "Go to the previous Conflict [Git-Conflict]" "]x";
|
prevConflict = mkMappingOption "Go to the previous Conflict [Git-Conflict]" "]x";
|
||||||
nextConflict = mkMappingOption "Go to the next Conflict [Git-Conflict]" "[x";
|
nextConflict = mkMappingOption "Go to the next Conflict [Git-Conflict]" "[x";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
pluginBuilders = {
|
pluginBuilders = {
|
||||||
nvim-treesitter = buildTreesitterPlug config.vim.treesitter.grammars;
|
nvim-treesitter = buildTreesitterPlug config.vim.treesitter.grammars;
|
||||||
flutter-tools-patched = buildPlug {
|
flutter-tools-patched = buildPlug {
|
||||||
pname = "flutter-tools-nvim";
|
pname = "flutter-tools";
|
||||||
patches = [./patches/flutter-tools.patch];
|
patches = [./patches/flutter-tools.patch];
|
||||||
|
|
||||||
# Disable failing require check hook checks
|
# Disable failing require check hook checks
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue