-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🔧 Enable scroll animate with mini.animage * ✨ support function rename * 🔧 Add marksman root folder marker * 🔧 Set up local spelling file * 🔧 move vim spelling to nvim nvim is now default editor, vim backup and spelling in vim is not essential. Better now to go with the defaults of nvim * 🐛 use opts map not function to allow merge with default If the opt is a function it seems to replace the default instead of merging with the default * ✨ use project local spell file if it exists * 🔧 Configure markdownlint cli2 (to allow long lines for tables) * 🔧 Ignore snippets for gitcommit and markdown Low value and leads to window text shuffle as you type * 📦️ update packages
- Loading branch information
Showing
18 changed files
with
493 additions
and
442 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"default": true, | ||
"line_length": false, | ||
"code-block-style": false, | ||
"MD013": { | ||
"tables": false | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
return { | ||
"garymjr/nvim-snippets", | ||
opts = { | ||
ignored_filetypes = { "markdown", "gitcommit" }, | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
return { | ||
"smjonas/inc-rename.nvim", | ||
keys = { | ||
{ | ||
"<leader>rn", | ||
function() | ||
return ":IncRename " .. vim.fn.expand("<cword>") | ||
end, | ||
desc = "Incremental Rename", | ||
expr = true, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
return { | ||
{ | ||
"mfussenegger/nvim-lint", | ||
opts = { | ||
linters = { | ||
["markdownlint-cli2"] = { | ||
args = { "--config", "~/.config/.markdownlint.jsonc", "--" }, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
return { | ||
"echasnovski/mini.animate", | ||
opts = { | ||
cursor = { | ||
enable = false, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
return { | ||
{ "tpope/vim-eunuch" }, | ||
{ | ||
"tpope/vim-fugitive", | ||
lazy = false, | ||
keys = { | ||
{ "<leader>gg", "<cmd>Git<cr>", desc = "Fugitive" }, | ||
{ "<leader>gp", "<cmd>Git push<cr>", desc = "Git push" }, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -424,3 +424,8 @@ zerover | |
zettelkasten | ||
pytest | ||
LangChain | ||
Nord | ||
Mooseman | ||
AppSync | ||
CloudFormation | ||
AWS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.