spacevim icon indicating copy to clipboard operation
spacevim copied to clipboard

Cannot see some menu characters

Open dontdieych opened this issue 7 years ago • 6 comments

vim 8.0 manjaro linux

screenshot_2016-12-02_19-02-48

Thanks.

dontdieych avatar Dec 02 '16 10:12 dontdieych

I'm using archlinux + vim 8.0 too so I'm close to you in term of environment.

What's your spacevim's mode "Distribution" or "Key bindings only"? I'm assuming that your are in master branch I'm right?

ctjhoa avatar Dec 02 '16 10:12 ctjhoa

Can you give me your .vimrc too please?

ctjhoa avatar Dec 02 '16 10:12 ctjhoa

I've installed spacevim as 'Distribution' mode few minutes ago.

" -*- mode: vimrc -*-
"vim: ft=vim

" dotspacevim/auto-install {{{
" Automatic installation of spacevim.

if empty(glob('~/.vim/autoload/spacevim.vim'))
    silent !curl -sSfLo ~/.vim/autoload/spacevim.vim --create-dirs
          \ https://raw.githubusercontent.com/ctjhoa/spacevim/master/autoload/spacevim.vim
endif

" }}}

" dotspacevim/init {{{
" This code is called at the very startup of Spacevim initialization
" before layers configuration.
" You should not put any user code in there besides modifying the variable
" values."
" IMPORTANT: For the moment, any changes in plugins or layers needs
" a vim restart and :PlugInstall

  let g:dotspacevim_distribution_mode = 1

  let g:dotspacevim_configuration_layers = [
  \  'core/.*',
  \  'git',
  \  'syntax-checking'
  \]

  let g:dotspacevim_additional_plugins = ['morhetz/gruvbox']

  let g:dotspacevim_excluded_plugins = []

  " let g:dotspacevim_escape_key_sequence = 'fd'

" }}}

" dotspacevim/user-init {{{
" Initialization for user code.
" It is compute immediately after `dotspacemacs/init', before layer
" configuration executes.
" This function is mostly useful for variables that need to be set
" before plugins are loaded. If you are unsure, you should try in setting
" them in `dotspacevim/user-config' first."

  let mapleader = ' '
  let g:leaderGuide_vertical = 1

" }}}

call spacevim#bootstrap()

" dotspacevim/user-config {{{
" Configuration for user code.
" This is computed at the very end of Spacevim initialization after
" layers configuration.
" This is the place where most of your configurations should be done.
" Unless it is explicitly specified that
" a variable should be set before a plugin is loaded,
" you should place your code here."

  set background=dark
  colorscheme gruvbox

" }}}

dontdieych avatar Dec 02 '16 10:12 dontdieych

I can reproduce I think it's an issue with vim-leader-guide. I gonna take a look at it. Thank you.

ctjhoa avatar Dec 02 '16 11:12 ctjhoa

@dontdieych I've done an hotfix on master and I'm gonna need time to write a better fix in my develop branch. The fastest way is to rm -rf ~/.vim && rm .vimrc and to reinstall spacevim:

curl -sSfL https://raw.githubusercontent.com/ctjhoa/spacevim/master/vimrc.sample -o ~/.vimrc | vim

ctjhoa avatar Dec 02 '16 13:12 ctjhoa

Thanks! That was quick.

      1. 오후 10:45에 "Camille TJHOA" [email protected]님이 작성:

@dontdieych https://github.com/dontdieych I've done an hotfix for master and I'm gonna need time to write a better fix in my develop branch. The fastest way is to rm -rf ~/.vim && rm .vimrc and to reinstall spacevim:

curl -sSfL https://raw.githubusercontent.com/ctjhoa/spacevim/master/ vimrc.sample -o ~/.vimrc | vim

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/ctjhoa/spacevim/issues/32#issuecomment-264456992, or mute the thread https://github.com/notifications/unsubscribe-auth/AGNUafMJNFjGgjOSqmkjyzPzDUBeTAfmks5rECETgaJpZM4LCY0_ .

dontdieych avatar Dec 02 '16 13:12 dontdieych