Skip to content

Commit 01f69f7

Browse files
committed
fix bufferline
1 parent b188948 commit 01f69f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dot_vimrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Plug 'nvim-treesitter/nvim-treesitter', has('nvim') ? {'do': ':TSUpdate'} : { 'o
140140
Plug 'SirVer/ultisnips', has('nvim') ? {} : { 'on': [] }
141141
Plug 'honza/vim-snippets', has('nvim') ? {} : { 'on': [] }
142142
Plug 'nvim-tree/nvim-web-devicons', has('nvim') ? {} : { 'on': [] }
143-
Plug 'akinsho/bufferline.nvim', has('nvim') ? { 'tag': 'v3.*' } : { 'on': [] }
143+
Plug 'akinsho/bufferline.nvim', has('nvim') ? {} : { 'on': [] }
144144
Plug 'stevearc/dressing.nvim', has('nvim') ? {} : { 'on': [] }
145145
Plug 'lewis6991/gitsigns.nvim', has('nvim') ? {} : { 'on': [] }
146146
Plug 'kevinhwang91/nvim-hlslens', has('nvim') ? {} : { 'on': [] }

sw/bin/executable_sync_coderabbitai.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pull_all.sh ~/Work/coderabbitai
66
# go through all the directories in ~/Work/coderabbitai
77
# look for package.json files in the subdirectories
88
# and run pnpm install in those directories
9-
find ~/Work/coderabbitai -name package.json -exec dirname {} \; | while read dir; do
9+
find ~/Work/coderabbitai -depth 2 -name package.json -exec dirname {} \; | while read dir; do
1010
# if the directory contains a pnpm-lock.yaml file use pnpm
1111
# otherwise look for a yarn.lock file and use yarn
1212
# otherwise look for a package-lock.json file and use npm

0 commit comments

Comments
 (0)