Ingrediente | Cantidad |
---|
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 autoindent | |
set fill 72 | |
set historylog | |
set morespace | |
set nohelp | |
set quickblank | |
set regexp | |
set smooth | |
set softwrap | |
set tabsize 4 |
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
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set laststatus=2 | |
set t_Co=256 | |
let g:airline#extensions#tabline#enabled = 1 | |
let g:airline_powerline_fonts = 1 | |
let g:airline_theme='powerlineish' | |
set spell spelllang=en_us | |
colorscheme molokai |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>Adrian Haasler García's subscriptions</title> | |
</head> | |
<body> | |
<outline text="Android" title="Android"> | |
<outline type="rss" text="Phandroid" title="Phandroid" xmlUrl="http://phandroid.com/feed/" htmlUrl="http://phandroid.com"/> | |
<outline type="rss" text="Xataka Android" title="Xataka Android" xmlUrl="http://www.xatakandroid.com/index.xml" htmlUrl="http://www.xatakandroid.com"/> |
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: http://st-on-it.blogspot.com/2010/01/how-to-move-folders-between-git.html | |
# First of all you need to have a clean clone of the source repository so we didn't screw the things up. | |
git clone git://server.com/my-repo1.git | |
# After that you need to do some preparations on the source repository, nuking all the entries except the folder you need to move. Use the following command | |
git filter-branch --subdirectory-filter your_dir -- -- all | |
# This will nuke all the other entries and their history, creating a clean git repository that contains only data and history from the directory you need. If you need to move several folders, you have to collect them in a single directory using the git mv command. |
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
2021-04-02 20:45:16,964 | INFO | ulauncher: main() | Ulauncher version 5.10.0 | |
2021-04-02 20:45:16,964 | INFO | ulauncher: main() | Extension API version 2.0.0 | |
2021-04-02 20:45:16,964 | INFO | ulauncher: main() | GTK+ 3.24.28 | |
2021-04-02 20:45:16,964 | INFO | ulauncher: main() | Is Wayland: True | |
2021-04-02 20:45:16,965 | INFO | ulauncher: main() | Wayland compatibility: off | |
2021-04-02 20:45:16,987 | DEBUG | ulauncher.ui.windows.Builder: __init__() | consider using a pythonic name instead of design name 'input-box' | |
2021-04-02 20:45:16,992 | DEBUG | ulauncher.ui.windows.Builder: do_connect() | connect builder by name 'ulauncher_window','destroy', 'on_destroy' | |
2021-04-02 20:45:16,992 | DEBUG | ulauncher.ui.windows.Builder: do_connect() | connect builder by name 'ulauncher_window','focus_in_event', 'on_focus_in_event' | |
2021-04-02 20:45:16,992 | DEBUG | ulauncher.ui.windows.Builder: do_connect() | connect builder by name 'ulauncher_window','focus_out_event', 'on_focus_out_event' | |
2021-04-02 20:45:16,994 | DEBUG | ulau |