Skip to content

Instantly share code, notes, and snippets.

View SofijaErkin's full-sized avatar
🎯
Focusing

Vittore Marcas SofijaErkin

🎯
Focusing
View GitHub Profile
@SofijaErkin
SofijaErkin / gdbpavim_pygdbp_via_vim.md
Last active June 19, 2022 02:51
Using DBGPavim and pydbgp debug python on Linux.

Debug Python via DBGPavim and pydbgp

DBGPavim Plugin

Install DBGPavim

add the below to ~/.vimrc:

Plugin 'https://github.com/brookhong/DBGPavim.git'
@SofijaErkin
SofijaErkin / .a_config_clang_format.md
Last active May 17, 2022 11:50
config file for clang-format

Configuration for Clang-Format

This is a configuration file of clang-format.

@SofijaErkin
SofijaErkin / color_plugins_vim.md
Last active June 19, 2022 13:33
config vim color method via color plugins

Plugins for VIM

Optional tools software choosing settings

just use clang-format for an example:

sudo update-alternatives --install /usr/local/bin/clang-format clang-format /usr/local/Cellar/clang-format@5/5.0.2/bin/clang-format 99

sudo update-alternatives --install /usr/local/bin/clang-format clang-format /usr/local/Cellar/clang-format/14.0.3/bin/clang-format 100 
@SofijaErkin
SofijaErkin / .debian_compile_witout_libclang_sync_ycmconfig.md
Created May 10, 2022 12:06
sync `.ycm_extra_conf.py` using "`python3 install.py --clang-completer`" to compile installing on debian

The YCM configuration file for Debian Compiling YouComplete with Clang-completer And without Libclang

This is to sync .ycm_extra_conf.py during Using "python3 install.py --clang-completer"

to compile and install YouCompleteMe on Debian.

@SofijaErkin
SofijaErkin / .debian_download_ycm_config_file_sync.md
Created May 10, 2022 11:27
sync the downloaded youcompleteme configuration file on debina

Debian(Linux) Downloaded YouCOmpleteMe Config file with Syncing

This is to sync the .ycm_extra_conf.py where debian download via Vundle.

@SofijaErkin
SofijaErkin / .mac_download_ycm_config.md
Created May 10, 2022 10:48
mac download ycm config file via vundle with Syncing

MacOS Download YouCompleteMe Config file

This is to sync downloaded .ycm_extra_conf.py on macOS

@SofijaErkin
SofijaErkin / .mac_zshrc_sync.md
Created May 10, 2022 04:49
mac sync terminal configuration .zshrc

Mac Sync Terminal Configuration .zshrc

This is to sync terminal configuration ~/.zshrc on Mac.

Mac Sync Terminal Configuration .vimrc

This is to sync ~/.vimrc for terminal configuration on Mac.

@SofijaErkin
SofijaErkin / manually_install_vim_on_mac_support_python3.md
Last active July 14, 2025 15:22
install vim supporting python3 on mac

Mac Manually install VIM with supporting Python3

I include this answer to "Way 0" and "Way 1" and "Way 2".

Way 0

1.run the below on terminal

brew reinstall python3
@SofijaErkin
SofijaErkin / ctags_and_taglist_for_vim_on_mac_or_linux.md
Last active July 3, 2023 10:41
ctags and taglist for vim on mac/debian

MacOS/Linux install Ctags and Taglist for VIM

(Debian 11)Debian's default ctags is that ctags (GNU Emacs 27.1).

(MacOS10.12.6->upgrade_to->MacOS12.3.1)macOS's default ctags is the Unix ctags utility that is under

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ctags.

The taglist plugin will not work with the GNU ctags or the Unix ctags utility.