mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
feat: Working on trying lazyvim
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
[mounts]
|
[mounts]
|
||||||
path = /Users/michael/.local/share/password-store
|
path = /Users/michael/.local/share/password-store
|
||||||
[recipients]
|
[recipients]
|
||||||
hash = 3199e2acda60d6f17a15882ba11749feda9775cf848554c8f04f12bc84521fd3
|
hash = 5427c9f1848d203e021059f9416d1a809b43a3c1b4501ccae6332cd3a945d080
|
||||||
[mounts "servers"]
|
[mounts "servers"]
|
||||||
path = /Users/michael/.local/share/gopass/stores/servers
|
path = /Users/michael/.local/share/gopass/stores/servers
|
||||||
[recipients "homelab"]
|
[recipients "homelab"]
|
||||||
|
|||||||
@@ -10,4 +10,4 @@ max-cache-ttl 120
|
|||||||
#pinentry-program /usr/bin/pinentry-x11
|
#pinentry-program /usr/bin/pinentry-x11
|
||||||
#pinentry-program /usr/local/bin/pinentry-curses
|
#pinentry-program /usr/local/bin/pinentry-curses
|
||||||
|
|
||||||
#pinentry-program /opt/homebrew/bin/pinentry-mac
|
pinentry-program /opt/homebrew/bin/pinentry-mac
|
||||||
|
|||||||
@@ -5,7 +5,11 @@
|
|||||||
"lazyvim.plugins.extras.formatting.prettier",
|
"lazyvim.plugins.extras.formatting.prettier",
|
||||||
"lazyvim.plugins.extras.lang.ansible",
|
"lazyvim.plugins.extras.lang.ansible",
|
||||||
"lazyvim.plugins.extras.lang.clangd",
|
"lazyvim.plugins.extras.lang.clangd",
|
||||||
"lazyvim.plugins.extras.lang.docker"
|
"lazyvim.plugins.extras.lang.docker",
|
||||||
|
"lazyvim.plugins.extras.lang.toml",
|
||||||
|
"lazyvim.plugins.extras.ui.mini-indentscope",
|
||||||
|
"lazyvim.plugins.extras.util.dot",
|
||||||
|
"lazyvim.plugins.extras.util.mini-hipatterns"
|
||||||
],
|
],
|
||||||
"news": {
|
"news": {
|
||||||
"NEWS.md": "10960"
|
"NEWS.md": "10960"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ createCmd("BufEnter", {
|
|||||||
pattern = { "*.md", "*.markdown", "*.txt", "*.tex" },
|
pattern = { "*.md", "*.markdown", "*.txt", "*.tex" },
|
||||||
group = spellGroup,
|
group = spellGroup,
|
||||||
callback = function(_)
|
callback = function(_)
|
||||||
vim.cmd.setlocal("textwidth=80")
|
vim.cmd.setlocal("textwidth=100")
|
||||||
vim.cmd.setlocal("spell spelllang=en_us")
|
vim.cmd.setlocal("spell spelllang=en_us")
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
return {
|
return {
|
||||||
{ "nvim-neo-tree/neo-tree.nvim", enabled = false },
|
{ "nvim-neo-tree/neo-tree.nvim", enabled = false },
|
||||||
|
{ "akinsho/bufferline.nvim", enabled = false },
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,12 +6,9 @@ return {
|
|||||||
markdown = {
|
markdown = {
|
||||||
"prettier",
|
"prettier",
|
||||||
prepend_args = {
|
prepend_args = {
|
||||||
"--print-width",
|
"--print-width", "100",
|
||||||
"100",
|
"--prose-wrap", "always",
|
||||||
"--prose-wrap",
|
"--parser", "markdown",
|
||||||
"always",
|
|
||||||
"--parser",
|
|
||||||
"markdown",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
swift = { "swiftformat" },
|
swift = { "swiftformat" },
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
import = "lazyvim.plugins.extras.editor.telescope",
|
import = "lazyvim.plugins.extras.editor.telescope",
|
||||||
|
enabled = false,
|
||||||
opts = {
|
opts = {
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"swift",
|
"swift",
|
||||||
|
|||||||
Reference in New Issue
Block a user