configs
parent
82b7ab2d13
commit
29c76086b0
7
.vimrc
7
.vimrc
|
|
@ -1,8 +1,13 @@
|
||||||
|
set runtimepath=$XDG_CONFIG_HOME/vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,$XDG_CONFIG_HOME/after
|
||||||
|
set packpath=$XDG_CONFIG_HOME/vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,$XDG_CONFIG_HOME/after
|
||||||
|
|
||||||
|
set viminfo+='1000,n$XDG_CONFIG_HOME/vim/viminfo
|
||||||
|
|
||||||
" Set this to 1 to use ultisnips for snippet handling
|
" Set this to 1 to use ultisnips for snippet handling
|
||||||
let s:using_snippets = 0
|
let s:using_snippets = 0
|
||||||
|
|
||||||
" vim-plug: {{{
|
" vim-plug: {{{
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin()
|
||||||
|
|
||||||
Plug 'preservim/nerdtree'
|
Plug 'preservim/nerdtree'
|
||||||
Plug 'OmniSharp/omnisharp-vim'
|
Plug 'OmniSharp/omnisharp-vim'
|
||||||
|
|
|
||||||
2
.zshrc
2
.zshrc
|
|
@ -10,6 +10,8 @@ export XDG_CACHE_HOME="$HOME/.cache"
|
||||||
export ANDROID_SDK_ROOT=$HOME/android/sdk
|
export ANDROID_SDK_ROOT=$HOME/android/sdk
|
||||||
export PATH=$PATH:$ANDROID_SDK_ROOT/emulator
|
export PATH=$PATH:$ANDROID_SDK_ROOT/emulator
|
||||||
export PATH=$PATH:$ANDROID_SDK_ROOT/platform-tools
|
export PATH=$PATH:$ANDROID_SDK_ROOT/platform-tools
|
||||||
|
export PATH=$PATH:$ANDROID_SDK_ROOT/platform-tools
|
||||||
|
export PATH=$PATH:$HOME/android/flutter/bin/
|
||||||
|
|
||||||
export PATH=$PATH:~/.local/bin:~/.local/bin/statusbar
|
export PATH=$PATH:~/.local/bin:~/.local/bin/statusbar
|
||||||
export MOZ_USE_XINPUT2=1
|
export MOZ_USE_XINPUT2=1
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,7 @@ shadow-exclude = [
|
||||||
"class_g = 'Cairo-clock'",
|
"class_g = 'Cairo-clock'",
|
||||||
"class_g = 'firefox' && argb",
|
"class_g = 'firefox' && argb",
|
||||||
"name *= 'Telegram'",
|
"name *= 'Telegram'",
|
||||||
|
"name *= 'Emulator'",
|
||||||
"_GTK_FRAME_EXTENTS@:c"
|
"_GTK_FRAME_EXTENTS@:c"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
@ -202,6 +203,7 @@ blur-background-exclude = [
|
||||||
"window_type = 'desktop'",
|
"window_type = 'desktop'",
|
||||||
"class_g = 'firefox' && argb",
|
"class_g = 'firefox' && argb",
|
||||||
"name *= 'Telegram'",
|
"name *= 'Telegram'",
|
||||||
|
"name *= 'Emulator'",
|
||||||
"_GTK_FRAME_EXTENTS@:c"
|
"_GTK_FRAME_EXTENTS@:c"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue