Last active
March 19, 2019 02:11
-
-
Save Accacio/3e7d68204630d5ba89b322f1279085ac to your computer and use it in GitHub Desktop.
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
" Teste | |
let vimcommand = 'emacsclient -c' | |
iunmapAll | |
imap <C-d> deleteChar | |
imap <C-f> forwardChar | |
imap <A-f> forwardWord | |
imap <C-b> backwardChar | |
imap <C-a> beginningOfLine | |
imap <C-e> endOfLine | |
imap <C-d> deleteForwardChar | |
imap <A-d> deleteForwardWord | |
imap <A-b> backwardWord | |
imap <C-n> forwardLine | |
imap <C-p> backwardLine | |
imap <C-k> deleteToEnd | |
imap <C-o> editWithVim | |
unmap a | |
map a :tabnew duckduckgo<Space> | |
site '*://*.netflix.com/watch*' { | |
unmap <Space> | |
unmap f | |
} | |
site '*://*.youtube.com/watch*' { | |
unmap <Space> | |
unmap f | |
unmap j | |
unmap k | |
unmap l | |
} | |
map <C-d> :file ~/<CR> | |
let searchengine netflix = ["http://www.netflix.com" , "http://www.netflix.com/search/search?q="] | |
let completionengines = [ "duckduckgo", "google", "youtube", "wikipedia"] | |
let searchengine gm = "https://www.google.com/maps/search/" | |
let searchalias d = "duckduckgo" | |
let searchalias n = "netflix" | |
let defaultengine = "duckduckgo" | |
let hintcharacters = "dfjk" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment