Skip to content

Commit 70705bd

Browse files
committed
f
1 parent fd5eac1 commit 70705bd

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

lua/plugins.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ require('lspconfig').ts_ls.setup{
2828
require('lspconfig').clangd.setup{}
2929
require('lspconfig').tailwindcss.setup{}
3030
require('lspconfig').rust_analyzer.setup{}
31+
require('lspconfig').lua_ls.setup{}
3132

3233
-- Others
3334
require('gitsigns').setup()

plugins.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Plug 'Exafunction/codeium.nvim'
3939
Plug 'yetone/avante.nvim', { 'branch': 'main', 'do': 'make' }
4040

4141
" File management
42-
Plug 'kien/ctrlp.vim'
42+
Plug 'ctrlpvim/ctrlp.vim'
4343
Plug 'kyazdani42/nvim-tree.lua'
4444

4545
" Git

vimrc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,10 @@ let g:user_emmet_expandabbr_key = '<c-e>'
183183
let g:gist_show_privates = 1
184184
let g:indent_guides_guide_size = 1
185185

186-
let g:ctrlp_custom_ignore = '\v[\/](\.git|\.hg|\.svn|node_modules)$'
187-
let g:ctrlp_working_path_mode = ''
188-
let g:ctrlp_extensions = ['tag', 'buffertag', 'quickfix' ]
186+
let g:ctrlp_custom_ignore = '\v[\/]\.(git|hg|svn|.venv)$'
187+
let g:ctrlp_working_path_mode = 'ra'
188+
let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard']
189+
189190

190191
let g:mundo_prefer_python3=1
191192
let g:prettier#autoformat = 0

0 commit comments

Comments
 (0)