Add vdebug
This commit is contained in:
parent
a8c4ea36cc
commit
a49383f361
1
.config/nvim/ftplugin/cpp.lua
Normal file
1
.config/nvim/ftplugin/cpp.lua
Normal file
@ -0,0 +1 @@
|
|||||||
|
vim.bo.expandtab = true
|
@ -1 +0,0 @@
|
|||||||
setlocal et
|
|
3
.config/nvim/ftplugin/css.lua
Normal file
3
.config/nvim/ftplugin/css.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
vim.bo.expandtab = true
|
||||||
|
vim.bo.tabstop = 2
|
||||||
|
vim.bo.shiftwidth = 2
|
@ -1,4 +0,0 @@
|
|||||||
setlocal et
|
|
||||||
setlocal ts=2
|
|
||||||
setlocal sts=2
|
|
||||||
setlocal sw=2
|
|
3
.config/nvim/ftplugin/less.lua
Normal file
3
.config/nvim/ftplugin/less.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
vim.bo.expandtab = true
|
||||||
|
vim.bo.tabstop = 2
|
||||||
|
vim.bo.shiftwidth = 2
|
@ -1,4 +0,0 @@
|
|||||||
setlocal et
|
|
||||||
setlocal ts=2
|
|
||||||
setlocal sts=2
|
|
||||||
setlocal sw=2
|
|
@ -83,6 +83,7 @@ require('packer').startup(function()
|
|||||||
'nvim-lua/plenary.nvim'
|
'nvim-lua/plenary.nvim'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
use 'vim-vdebug/vdebug'
|
||||||
|
|
||||||
-- nvim-cmp
|
-- nvim-cmp
|
||||||
use 'dcampos/nvim-snippy'
|
use 'dcampos/nvim-snippy'
|
||||||
@ -368,4 +369,9 @@ dap.configurations.cpp = {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Vdebug
|
||||||
|
--
|
||||||
|
vim.g.vdebug_options = { port = '9000' }
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
11
.profile
11
.profile
@ -4,7 +4,11 @@ if [ -x /opt/homebrew/bin/brew ]
|
|||||||
then
|
then
|
||||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||||
|
|
||||||
PATH="$HOMEBREW_PREFIX/opt/bison/bin:/usr/local/bin:$PATH"
|
PATH="/usr/local/bin:$PATH"
|
||||||
|
for tool in flex bison
|
||||||
|
do
|
||||||
|
PATH="$HOMEBREW_PREFIX/opt/$tool/bin:$PATH"
|
||||||
|
done
|
||||||
for tool in libtool coreutils grep gnu-sed findutils make
|
for tool in libtool coreutils grep gnu-sed findutils make
|
||||||
do
|
do
|
||||||
PATH="$HOMEBREW_PREFIX/opt/$tool/libexec/gnubin:$PATH"
|
PATH="$HOMEBREW_PREFIX/opt/$tool/libexec/gnubin:$PATH"
|
||||||
@ -14,11 +18,6 @@ else
|
|||||||
export SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
|
export SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d /opt/homebrew/opt/php@8.3 ]
|
|
||||||
then
|
|
||||||
PATH="/opt/homebrew/opt/php@8.3/bin:/opt/homebrew/opt/php@8.3/sbin:$PATH"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -d "$HOME/Android/Sdk" ]
|
if [ -d "$HOME/Android/Sdk" ]
|
||||||
then
|
then
|
||||||
export ANDROID_HOME="$HOME/Android/Sdk"
|
export ANDROID_HOME="$HOME/Android/Sdk"
|
||||||
|
Loading…
Reference in New Issue
Block a user