mirror of
https://github.com/thegeneralist01/config.git
synced 2026-03-07 10:59:55 +01:00
nvim: add MarkdownPreview
- add `.cargo/bin` to PATH
This commit is contained in:
parent
3a47ebe28b
commit
48eefdaa20
4 changed files with 15 additions and 67 deletions
|
|
@ -71,66 +71,6 @@ alias rb = nh os switch . -v -- --show-trace --verbose
|
|||
def greeting [] {
|
||||
let quotes = [
|
||||
"What is impossible for you is not impossible for me."
|
||||
"What is impossible for you is not impossible for me."
|
||||
"What is impossible for you is not impossible for me."
|
||||
"What is impossible for you is not impossible for me."
|
||||
"What is impossible for you is not impossible for me."
|
||||
"What is impossible for you is not impossible for me."
|
||||
"What is impossible for you is not impossible for me."
|
||||
"What is impossible for you is not impossible for me."
|
||||
"Ah, Stil, I live in an apocalyptic dream."
|
||||
"Greatness is a transitory experience."
|
||||
"Limits exist only to be exceeded."
|
||||
"I don’t follow paths. I make them."
|
||||
"What crushes others fuels me."
|
||||
"Ordinary is the disease. I am the cure."
|
||||
"You see walls. I see doors."
|
||||
"Fear is a suggestion. I ignore it."
|
||||
"If it can be imagined, it can be done—faster."
|
||||
"Mediocrity is the only true danger."
|
||||
"I bend reality so you don’t have to."
|
||||
"The impossible is just untested patience."
|
||||
"Rules are advice I choose to ignore."
|
||||
"Every boundary is a dare."
|
||||
"I don’t wait for opportunity. I invent it."
|
||||
"Pain is a fuel. Weakness is optional."
|
||||
"Victory doesn’t ask permission."
|
||||
"The future bends to those who act."
|
||||
"Obstacles are just poorly designed stepping stones."
|
||||
"Chaos is a playground."
|
||||
"Legends are written in disregard for limits."
|
||||
"Difficulty is the seasoning of achievement."
|
||||
"Success belongs to those who steal it."
|
||||
"Failure is the draft. Mastery is the publication."
|
||||
"Time fears those who don’t respect it."
|
||||
"I thrive where others break."
|
||||
"Destiny is negotiable."
|
||||
"Limits are suggestions, not laws."
|
||||
"The world bends for persistence."
|
||||
"I make the rules after winning."
|
||||
"Every ‘no’ is a challenge waiting to be conquered."
|
||||
"I don’t follow trends. I create them."
|
||||
"Adversity is just another form of applause."
|
||||
"Impossible is an opinion, not a fact."
|
||||
"I carve paths through resistance."
|
||||
"Mastery is forged, not granted."
|
||||
"Chaos reveals the capable."
|
||||
"The meek inherit nothing."
|
||||
"I turn hesitation into fuel."
|
||||
"Pain is temporary. Glory is eternal."
|
||||
"I thrive in the impossible."
|
||||
"The weak talk. The strong act."
|
||||
"Fortune favors my audacity."
|
||||
"Nothing worth having comes unchallenged."
|
||||
"Limits are the invention of the timid."
|
||||
"Every barrier is an invitation."
|
||||
"I am the variable the universe didn’t calculate."
|
||||
"Victory whispers to those who refuse to listen to fear."
|
||||
"Failure teaches. I only graduate with honors."
|
||||
"The extraordinary is a habit, not a gift."
|
||||
"Resistance exists to prove my strength."
|
||||
"Legends are crafted in defiance."
|
||||
"The impossible is just another rehearsal."
|
||||
]
|
||||
echo ($quotes | get (random int 0..(($quotes | length) - 1)))
|
||||
}
|
||||
|
|
|
|||
|
|
@ -83,6 +83,7 @@ in {
|
|||
enable = true;
|
||||
sessionVariables = config.environment.variables // homeArgs.config.home.sessionVariables;
|
||||
};
|
||||
home.sessionPath = [ "/Users/thegeneralist/.cargo/bin" ];
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"windwp/nvim-autopairs",
|
||||
event = "InsertEnter",
|
||||
config = true,
|
||||
-- use opts = {} for passing setup options
|
||||
-- this is equivalent to setup({}) function
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
return {
|
||||
-- "iamcco/markdown-preview.nvim",
|
||||
-- cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
||||
-- build = "cd app && yarn install",
|
||||
-- init = function()
|
||||
-- vim.g.mkdp_filetypes = { "markdown" }
|
||||
-- end,
|
||||
-- ft = { "markdown" },
|
||||
"iamcco/markdown-preview.nvim",
|
||||
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
||||
build = "cd app && yarn install",
|
||||
init = function()
|
||||
vim.g.mkdp_filetypes = { "markdown" }
|
||||
end,
|
||||
ft = { "markdown" },
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue