This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -s set-clipboard on | |
set -g mouse off | |
set -g status-right '%d-%m-%Y %H:%M ' | |
set-option -g allow-rename off | |
set-option -g focus-events on | |
set-option -g default-terminal "screen-256color" | |
set -ag terminal-overrides ',xterm-256color:Tc' | |
set-option -sg escape-time 10 | |
# switch panes using Alt-arrow without prefix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vim.g.mapleader = ' ' | |
vim.g.maplocalleader = ' ' | |
-- Sync clipboard between OS and Neovim. | |
-- Remove this option if you want your OS clipboard to remain independent. | |
-- See `:help 'clipboard'` | |
vim.o.clipboard = 'unnamedplus' | |
-- Enable break indent | |
vim.o.breakindent = true | |
-- Save undo history | |
vim.o.undofile = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"" Source your .vimrc | |
"source ~/.vimrc | |
"" -- Suggested options -- | |
" Show a few lines of context around the cursor. Note that this makes the | |
" text scroll if you mouse-click near the start or end of the window. | |
set scrolloff=5 | |
" Don't use Ex mode, use Q for formatting. | |
map Q gq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add project specific ProGuard rules here. | |
# By default, the flags in this file are appended to flags specified | |
# in /Users/nikitagusarov/Library/Android/sdk/tools/proguard/proguard-android.txt | |
# You can edit the include path and order by changing the proguardFiles | |
# directive in build.gradle. | |
# | |
# For more details, see | |
# http://developer.android.com/guide/developing/tools/proguard.html | |
-optimizationpasses 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ext { | |
config = [ | |
'compileSdkVersion' : 30, | |
'minSdkVersion' : 23, | |
'targetSdkVersion' : 28, | |
'versionCode' : 1, | |
'versionName' : "1.0", | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ext { | |
versions = [ | |
'androidx' : '1.1.0', | |
'fragmentktx' : '1.3.1', | |
'activityktx' : '1.2.1', | |
'constraintLayout' : '2.0.4', | |
'dataBinding' : '3.1.4', | |
'atsl' : '1.0.2', | |
'kotlin' : '1.4.32', | |
'kotlinCoroutines' : '1.4.2', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<application> | |
<service | |
android:label="BLABLABLA" | |
android:name=".service.WindowChangeDetectingService" | |
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> | |
<intent-filter> | |
<action android:name="android.accessibilityservice.AccessibilityService"/> | |
</intent-filter> | |
<meta-data | |
android:name="android.accessibilityservice" |