mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
feat: Adds brew-update function
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"saghen/blink.cmp",
|
"saghen/blink.cmp",
|
||||||
enabled = true,
|
enabled = false,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
-- "rafamadriz/friendly-snippets",
|
-- "rafamadriz/friendly-snippets",
|
||||||
{ "L3MON4D3/LuaSnip", version = "v2.*" },
|
{ "L3MON4D3/LuaSnip", version = "v2.*" },
|
||||||
@@ -49,6 +49,13 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
opts_extend = { "sources.default" },
|
opts_extend = { "sources.default" },
|
||||||
keymap = { preset = "default" },
|
keymap = {
|
||||||
|
preset = "default",
|
||||||
|
|
||||||
|
["<Tab>"] = {},
|
||||||
|
["<S-Tab>"] = {},
|
||||||
|
["<C-b>"] = { "snippet_backward", "fallback" },
|
||||||
|
["<C-f>"] = { "snippet_forward", "fallback" },
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
return {
|
return {
|
||||||
"hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
enabled = false,
|
enabled = true,
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"hrsh7th/cmp-nvim-lsp",
|
"hrsh7th/cmp-nvim-lsp",
|
||||||
|
|||||||
5
zsh/config/functions/brew-update
Executable file
5
zsh/config/functions/brew-update
Executable file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
|
function brew-update() {
|
||||||
|
brew update && brew upgrade --greedy && brew cleanup
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user