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
public abstract class BaseActivity extends AppCompatActivity { | |
public void moveBack() { | |
super.onBackPressed(); | |
} | |
public abstract void onBackWhenNoFragment(); | |
@Override | |
public void onBackPressed() { |
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
let g:python_host_prog='/usr/bin/python' | |
call plug#begin('~/.nvim/plugged') | |
Plug 'ryanoasis/vim-devicons' " For auto iconify vim | |
"Plug 'hsanson/vim-android' " For android development | |
Plug 'scrooloose/nerdcommenter' " Comment fast and professionally | |
Plug 'scrooloose/nerdtree' , {'on': 'NERDTreeToggle'} " Proper file explorer inside vim | |
"Plug 'justinmk/vim-dirvish' | |
Plug 'flazz/vim-colorschemes' " All popular Colorscheme | |
Plug 'tpope/vim-surround' " Quick Surround with tags or Brackets | |
Plug 'octol/vim-cpp-enhanced-highlight' " Enhanced syntax highlight for CPP files |