mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
chore(brew): update Brewfile
This commit is contained in:
6
Brewfile
6
Brewfile
@@ -134,8 +134,6 @@ brew "jpeg", link: true
|
||||
brew "zeromq"
|
||||
# Play, record, convert, and stream audio and video
|
||||
brew "ffmpeg"
|
||||
# GNU compiler collection
|
||||
brew "gcc"
|
||||
# Static type checker for JavaScript
|
||||
brew "flow"
|
||||
# Command-line outline and bitmap font editor/converter
|
||||
@@ -144,6 +142,8 @@ brew "fontforge"
|
||||
brew "fpp"
|
||||
# Command-line fuzzy finder written in Go
|
||||
brew "fzf"
|
||||
# GNU compiler collection
|
||||
brew "gcc"
|
||||
# GitHub command-line tool
|
||||
brew "gh"
|
||||
# Distributed revision control system
|
||||
@@ -461,6 +461,8 @@ cask "ipfs"
|
||||
cask "iterm2"
|
||||
# Menu bar calendar
|
||||
cask "itsycal"
|
||||
# Jellyfin desktop client
|
||||
cask "jellyfin-media-player"
|
||||
# Spot and merge differences in text and image files or folders
|
||||
cask "kaleidoscope"
|
||||
# Keyboard customizer
|
||||
|
||||
@@ -97,6 +97,11 @@ cmp.setup({
|
||||
format = function(entry, vim_item)
|
||||
-- Kind icons
|
||||
vim_item.kind = string.format("%s", kind_icons[vim_item.kind])
|
||||
|
||||
if entry.source.name == "copilot" then
|
||||
vim_item.kind = icons.git.Octoface
|
||||
vim_item.kind_hl_group = "CmpItemKindCopilot"
|
||||
end
|
||||
-- vim_item.kind = string.format("%s %s", kind_icons[vim_item.kind], vim_item.kind) -- This concatenates the icons with the name of the item kind
|
||||
vim_item.menu = ({
|
||||
nvim_lsp = "[LSP]",
|
||||
@@ -113,6 +118,37 @@ cmp.setup({
|
||||
end,
|
||||
},
|
||||
sources = {
|
||||
{
|
||||
name = "copilot",
|
||||
-- keyword_length = 0,
|
||||
max_item_count = 3,
|
||||
trigger_characters = {
|
||||
{
|
||||
".",
|
||||
":",
|
||||
"(",
|
||||
"'",
|
||||
'"',
|
||||
"[",
|
||||
",",
|
||||
"#",
|
||||
"*",
|
||||
"@",
|
||||
"|",
|
||||
"=",
|
||||
"-",
|
||||
"{",
|
||||
"/",
|
||||
"\\",
|
||||
"+",
|
||||
"?",
|
||||
" ",
|
||||
-- "\t",
|
||||
-- "\n",
|
||||
},
|
||||
},
|
||||
group_index = 2,
|
||||
},
|
||||
{ name = "nvim_lsp" },
|
||||
{ name = "nvim_lsp_signature_help" },
|
||||
{ name = "luasnip" },
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
-- https://github.com/github/copilot.vim
|
||||
local status_ok = pcall(require, "copilot")
|
||||
if not status_ok then
|
||||
return
|
||||
end
|
||||
|
||||
vim.g.copilot_no_tab_map = true
|
||||
vim.g.copilot_assume_mapped = true
|
||||
vim.g.copilot_tab_fallback = ""
|
||||
Reference in New Issue
Block a user