xaizek / dotvim (License: Unspecified) (since 2018-12-07)
Vim configuration and plugins.
Commit 0b6753fa6e3258f0663c5e2638178ba39ff0db17

Fix * and # mappings after nmap -> nnoremap
It used an idiotic trick to invoke mapped command, which broke.
Author: xaizek
Author date (UTC): 2020-03-03 23:15
Committer name: xaizek
Committer date (UTC): 2020-03-03 23:16
Parent(s): 61ace37e793bc0c54f79a274d540306e30755c28
Signing key: 99DC5E4DB05F6BE2
Tree: a846c243e15617e12a4dc8e7966dac0c2ec0b811
File Lines added Lines deleted
vimrc 3 5
File vimrc changed (mode: 100644) (index 6f84c92..22e9d35)
... ... nnoremap ` '
628 628
629 629 " map ,h to search highlight toggle " map ,h to search highlight toggle
630 630 nnoremap <silent> <leader>h :call libcfg#opt#ToggleHlsearch()<cr> nnoremap <silent> <leader>h :call libcfg#opt#ToggleHlsearch()<cr>
631 " these lines are needed for highlight enabling
632 nnoremap ,* *
633 nnoremap * :set hlsearch<cr>,*
634 nnoremap ,# #
635 nnoremap # :set hlsearch<cr>,#
631 " automatically enable highlighting of search results on * and #
632 nnoremap * :set hlsearch<cr>*
633 nnoremap # :set hlsearch<cr>#
636 634
637 635 " smart case policy on search " smart case policy on search
638 636 set ignorecase set ignorecase
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/dotvim

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/dotvim

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master