知りたいこと
提示画像ですが以下のウインドウの下のメッセージの解決方法がわかりません。
nvim
のプラグインインストールでpacker
を使ってcmp-tabnine
をインストールしたいのですが以下のメッセージが出てしまい導入できません。
試したこと
1,直接install.sh
を実行しましたが以下のエラーになります。
2,以下のgithubのコードを参考にしたのですが関数の中には書かないため関数の中身を載せました。
3,関数ごと載せましたが違いました。
4,以下の直接実行提示サイト部ですがバイナリというディレクトリが自分の環境にはなぜかないため~/.local/share/nvim/site/pack/packer/start/cmp-tabnine$
部のinstall.shを実行しました。
5,run='bash install.sh'
に変更して実行しました。
6,run='./install.sh'
に変更して実行しました。
環境
OS:Ubuntu
参考サイト
https://github.com/tzachar/cmp-tabnine
直接実行:https://github.com/tzachar/cmp-tabnine/issues/3
ディレクトリから直接実行
:~/.local/share/nvim/site/pack/packer/start/cmp-tabnine$ sh install.sh install.sh: 6: set: Illegal option -o pipefail
plugins.lua 一部抜粋 ( 最下部)
lua
1 } 2 3 use 'kyazdani42/nvim-web-devicons' -- File icons 4 use 'nvim-telescope/telescope.nvim' 5 use 'nvim-telescope/telescope-file-browser.nvim' 6 use 'windwp/nvim-autopairs' 7 use 'windwp/nvim-ts-autotag' 8 use { 'numToStr/Comment.nvim', 9 requires = { 10 'JoosepAlviste/nvim-ts-context-commentstring' 11 } 12 } 13 use 'norcalli/nvim-colorizer.lua' 14 use 'folke/zen-mode.nvim' 15 use 'iamcco/markdown-preview.nvim' 16 use 'akinsho/nvim-bufferline.lua' 17 -- use 'github/copilot.vim' 18 19 use 'lewis6991/gitsigns.nvim' 20 use 'dinhhuy258/git.nvim' -- For git blame & browse 21 22 use { 23 "hrsh7th/nvim-cmp", 24 requires = { 25 "hrsh7th/cmp-buffer", "hrsh7th/cmp-nvim-lsp", 26 'quangnguyen30192/cmp-nvim-ultisnips', 'hrsh7th/cmp-nvim-lua', 27 'octaltree/cmp-look', 'hrsh7th/cmp-path', 'hrsh7th/cmp-calc', 28 'f3fora/cmp-spell', 'hrsh7th/cmp-emoji' 29 } 30 } 31 32 run='install.sh', 33 use {'tzachar/cmp-tabnine',requires = 'hrsh7th/nvim-cmp'} 34 35end)