Невозможно заставить работать mapleader в vim

Я не могу заставить работать mapleader в vim.

При выполнении let mapleader или let maplocalleader, он показывает лидера как установлено (здесь), но когда я использую лидера, он ничего не делает.

Ниже приводится содержимое моего файла vimrc

" -----------------------------------------------------------------------------
" To make vimwiki properly
" -----------------------------------------------------------------------------
set nocompatible            " put it on
filetype off                  " required
" -----------------------------------------------------------------------------
" end: To make vimwiki properly
" -----------------------------------------------------------------------------






" -----------------------------------------------------------------------------
" start : Plugins
" -----------------------------------------------------------------------------


" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')




Plug 'gruvbox-community/gruvbox'   " Gruvbox theme.

Plug 'junegunn/limelight.vim'      " Dim paragraphs above and below the active paragraph.


Plug 'junegunn/goyo.vim'           " Distraction free writing by removing UI elements and centering everything.

Plug 'vimwiki/vimwiki'
Plug 'mattn/calendar-vim'

Plug 'godlygeek/tabular'           "The tabular plugin must come before vim-markdown.
Plug 'plasticboy/vim-markdown'     "The tabular plugin must come before vim-markdown.

"UI
Plug 'bling/vim-airline'
Plug 'scrooloose/nerdtree'         " Navigate and manipulate files in a tree view.

" Movement
Plug 'Lokaltog/vim-easymotion'

"Tools
Plug 'itchyny/calendar.vim'


call plug#end()



" -----------------------------------------------------------------------------
" End : Plugins
" -----------------------------------------------------------------------------

filetype plugin on
syntax enable
syntax on
match ErrorMsg '\s\+.

set title
set relativenumber

set number            " line numbers
set mouse=a
set noswapfile
set laststatus=2
set enc=utf-8


set hlsearch                  " Highlight search results
set incsearch                 " set increment search
set ignorecase                " case insensitive search, use \C anywhere with no space for case sensitive search



let g:lightline = {
            \ 'colorscheme': 'wombat',
            \ }


" -----------------------------------------------------------------------------
" Basic mappings
" -----------------------------------------------------------------------------
let mapleader = ","
let maplocalleader= ","

" Delete trailing whitespace
nnoremap <Leader>rtw :%s/\s\+$//e<CR>

nnoremap <Leader>a :echo("\<leader\> works! It is set to <leader>")<CR>
nmap <F6> :NERDTreeToggle<CR>   " open or close nerd tree by pressing F6
nmap <Leader>w <Plug>:VimwikiIndex
nmap <leader>dy <Plug>VimwikiMakeYesterdayDiaryNote





" Gif config
map  / <Plug>(easymotion-sn)
omap / <Plug>(easymotion-tn)

" These `n` & `N` mappings are options. You do not have to map `n` & `N` to EasyMotion.
" Without these mappings, `n` & `N` works fine. (These mappings just provide
" different highlight method and have some other features )
map  n <Plug>(easymotion-next)
map  N <Plug>(easymotion-prev)

" -----------------------------------------------------------------------------
" start : Status line
" -----------------------------------------------------------------------------

" Heavily inspired by: https://github.com/junegunn/dotfiles/blob/master/vimrc
function! s:statusline_expr()
  let mod = "%{&modified ? '[+] ' : !&modifiable ? '[x] ' : ''}"
  let ro  = "%{&readonly ? '[RO] ' : ''}"
  let ft  = "%{len(&filetype) ? '['.&filetype.'] ' : ''}"
  let fug = "%{exists('g:loaded_fugitive') ? fugitive#statusline() : ''}"
  let sep = ' %= '
  let pos = ' %-12(%l : %c%V%) '
  let pct = ' %P'

  return '[%n] %f %<'.mod.ro.ft.fug.sep.pos.'%*'.pct
endfunction

let &statusline = s:statusline_expr()






" -----------------------------------------------------------------------------
" end : Status line
" -----------------------------------------------------------------------------



" -----------------------------------------------------------------------------
" start : Color settings
" -----------------------------------------------------------------------------

colorscheme gruvbox
" For Gruvbox to look correct in terminal Vim you'll want to source a palette
" script that comes with the Gruvbox plugin.
"
" Add this to your ~/.profile file:
"   source "$HOME/.vim/plugged/gruvbox/gruvbox_256palette.sh"

" Gruvbox comes with both a dark and light theme.
set background=dark

" Gruvbox has 'hard', 'medium' (default) and 'soft' contrast options.
let g:gruvbox_contrast_light='hard'

" This needs to come last, otherwise the colors aren't correct.
syntax on

" -----------------------------------------------------------------------------
" end : Color settings
" -----------------------------------------------------------------------------

" -----------------------------------------------------------------------------
" start : vimwiki
" -----------------------------------------------------------------------------
" vimwiki/vimwiki markdown syntax
" let g:vimwiki_list = [{'path': '~/vimwiki/', 'syntax': 'markdown', 'ext': '.md'}]


" start: vimwiki multiple wikis 
let wiki_1 = {}
let wiki_1.path = '~/vimwiki/'
let wiki_1.path_html = '~/vimwiki_html/'

let wiki_2 = {}
let wiki_2.path = '~/vimwiki/private/'
let wiki_2.path_html = '~/vimwiki/private_html/'

let wiki_3 = {}
let wiki_3.path = '~/vimwiki/technical/'
let wiki_3.path_html = '~/vimwiki/technical_html/'

let g:vimwiki_list = [wiki_1, wiki_2, wiki_3]
" end: vim multiple wikis
" -----------------------------------------------------------------------------
" end : vimwiki
" -----------------------------------------------------------------------------
.
0
задан 25 June 2019 в 18:26

0 ответов

Другие вопросы по тегам:

Похожие вопросы: