diff --git a/autoload/SpaceVim.vim b/autoload/SpaceVim.vim index bf666f9d9..ff5df16a5 100644 --- a/autoload/SpaceVim.vim +++ b/autoload/SpaceVim.vim @@ -579,7 +579,7 @@ function! SpaceVim#loadCustomConfig() abort exe 'source ' . custom_glob_conf endif else - call SpaceVim#logger#info('Skip glob configration of SpaceVim') + call SpaceVim#logger#info('Skip glob configuration of SpaceVim') endif elseif filereadable(custom_glob_conf) if isdirectory(expand('~/.SpaceVim.d/')) diff --git a/docs/documentation.md b/docs/documentation.md index aefa42801..2f465f5b0 100644 --- a/docs/documentation.md +++ b/docs/documentation.md @@ -191,7 +191,7 @@ This section is an overview of layers. A more extensive introduction to writing **Purpose** -Layers help collect related packages together to provide features. For example, the `lang#python` layer provides auto-completion, syntax checking, and REPL support for python files. This approach helps keep configuration organized and reduces overhead for the user by keeping them from having to think about what packages to install. To install all the `python` features the user has just to add the `lang#python` layer to their custom configration file. +Layers help collect related packages together to provide features. For example, the `lang#python` layer provides auto-completion, syntax checking, and REPL support for python files. This approach helps keep configuration organized and reduces overhead for the user by keeping them from having to think about what packages to install. To install all the `python` features the user has just to add the `lang#python` layer to their custom configuration file. **Structure** @@ -282,7 +282,7 @@ let g:spacevim_guifont = 'DejaVu\ Sans\ Mono\ for\ Powerline\ 11' Comprehensive documentation is available for each layer by :h SpaceVim. -if you want to add custom `SPC` prefix key bindings, you can add this to SpaceVim configration file, **be sure** the key bindings is not used in SpaceVim. +if you want to add custom `SPC` prefix key bindings, you can add this to SpaceVim configuration file, **be sure** the key bindings is not used in SpaceVim. ```vim call SpaceVim#custom#SPCGroupName(['G'], '+TestGroup') @@ -453,7 +453,7 @@ all the colors based on the current colorscheme **Statusline separators:** -It is possible to easily customize the statusline separator by setting the `g:spacevim_statusline_separator` variable in your custom configration file and then redraw the statusline. For instance if you want to set back the separator to the well-known arrow separator add the following snippet to your configuration file: +It is possible to easily customize the statusline separator by setting the `g:spacevim_statusline_separator` variable in your custom configuration file and then redraw the statusline. For instance if you want to set back the separator to the well-known arrow separator add the following snippet to your configuration file: ```vim let g:spacevim_statusline_separator = 'arrow' @@ -528,7 +528,7 @@ endfunction this example is for gruvbox colorscheme, if you want to use same colors when switch between different colorschemes, you may need to set -`g:spacevim_custom_color_palette` in your custom configration file. for example: +`g:spacevim_custom_color_palette` in your custom configuration file. for example: ```vim let g:spacevim_custom_color_palette = [ diff --git a/docs/faq.md b/docs/faq.md index 3148bfc6d..e0a7ab390 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -10,16 +10,16 @@ this is a list of most asked questions about SpaceVim. -- [Where should I put my configration?](#where-should-i-put-my-configration) +- [Where should I put my configuration?](#where-should-i-put-my-configuration) - [E492: Not an editor command: ^M](#e492-not-an-editor-command-m) - [Why SpaceVim can not display default colorscheme?](#why-spacevim-can-not-display-default-colorscheme) - [Why I can not update plugins?](#why-i-can-not-update-plugins) -### Where should I put my configration? +### Where should I put my configuration? -SpaceVim load custom global configuration from `~/.SpaceVim.d/init.vim`. It also support project specific configration, +SpaceVim load custom global configuration from `~/.SpaceVim.d/init.vim`. It also support project specific configuration, That means it will load `.SpaceVim.d/init.vim` from the root of your project. ### E492: Not an editor command: ^M