All Projects → Tehnix → spaceneovim-layers

Tehnix / spaceneovim-layers

Licence: MIT license
Layers for usage in SpaceNeovim 👉

Programming Languages

Vim Script
2826 projects

Projects that are alternatives of or similar to spaceneovim-layers

Lambda-Layers
A collection of AWS lambda layers for python.
Stars: ✭ 35 (-10.26%)
Mutual labels:  layers
SpaceVim
基于SpaceVim的真正开箱即用、无需配置的IDE,你只需要记住快捷键即可。(目前默认支持C/C++、Go、Python、Shell、Markdown、VimL)
Stars: ✭ 58 (+48.72%)
Mutual labels:  spacevim
game-map-editor
game-map-editor
Stars: ✭ 17 (-56.41%)
Mutual labels:  layers
leaflet-tag-filter-button
Adds tag filter control for layers (marker, geojson features etc.) to LeafLet.
Stars: ✭ 48 (+23.08%)
Mutual labels:  layers
Emotion-recognition-from-tweets
A comprehensive approach on recognizing emotion (sentiment) from a certain tweet. Supervised machine learning.
Stars: ✭ 17 (-56.41%)
Mutual labels:  layers
keras-utility-layer-collection
Collection of custom layers and utility functions for Keras which are missing in the main framework.
Stars: ✭ 63 (+61.54%)
Mutual labels:  layers
react-layer-stack
Layering system for React. Useful for popover/modals/tooltip/dnd application
Stars: ✭ 158 (+305.13%)
Mutual labels:  layers
Layerjs
layerJS: Javascript UI composition framework
Stars: ✭ 1,825 (+4579.49%)
Mutual labels:  layers
lambda-layer-tool
Build and publish AWS Lambda layers defined in YAML
Stars: ✭ 22 (-43.59%)
Mutual labels:  layers
Dotfiles
My dotfiles for Archlinux and Windows
Stars: ✭ 1,419 (+3538.46%)
Mutual labels:  spacevim
Vim Galore Zh cn
Vim 从入门到精通
Stars: ✭ 8,619 (+22000%)
Mutual labels:  spacevim
Spacevim
A community-driven modular vim/neovim distribution - The ultimate vimrc
Stars: ✭ 17,558 (+44920.51%)
Mutual labels:  spacevim
dotfiles
My arch setup script and dotfiles
Stars: ✭ 37 (-5.13%)
Mutual labels:  spacevim

SpaceNeovim Layers Build Status

Managing layers to use with SpaceNeovim.

Current Layers

Name Description
+core/behavior Core functionality for SpaceNeovim
+core/sensible Sensible default settings
+completion/asyncomplete Auto-completion with asyncomplete
+completion/coc Auto-completion with coc.nvim
+completion/deoplete Auto-completion with deoplete
+completion/ncm2 Auto-completion with NCM2
+completion/snippets Snippet support
+checkers/ale Syntax checking with Ale
+checkers/neomake Syntax checking with Neomake
+checkers/syntastic Syntax checking with Syntastic
+docs/dash Browse offline documentation with Dash
+docs/zeal Browse offline documentation with Zeal
+gui/ide An opinionated setup with VimR/Oni
+nav/buffers Common buffer functionality
+nav/comments Manipulating comments
+nav/files Common file operations
+nav/fuzzy Fuzzy search for files, buffers and methods
+nav/fzf Fuzzy search using FZF
+nav/jump Easy navigation inside files
+nav/navigation Easy navigation on screen
+nav/quit Common quit functionality
+nav/start-screen Add start screen when opening Neovim
+nav/text Common text operations
+nav/tmux Navigate between VIM and TMUX panes
+nav/windows Common window functionality
+scm/git Git and fugitive support
+specs/testing Run tests directly from the editor
+tools/format Format files
+tools/language-server Language server support
+tools/multicursor Support for multiple cursors
+tools/terminal Defaults and keybindings for the terminal
+ui/airline Replace the status bar with airline
+ui/dynamic-cursor Dynamically change the cursor depending on the mode
+ui/toggles Toggles for common components

Language layers

Name Description
+lang/-example A template for creating new language layers
+lang/elm Support for Elm
+lang/fsharp Support for F#
+lang/go Support for Go
+lang/haskell Support for Haskell
+lang/java Support for Java
+lang/javascript Support for JavaScript
+lang/php Support for PHP
+lang/purescript Support for PureScript
+lang/python Support for python
+lang/ruby Support for Ruby
+lang/rust Support for Rust
+lang/vim Support for VimL

Adding a New Layer

A layer consists of, as minimum:

  • a README.md describing the layer (configuration, keybindings etc),
  • either a config.vim, adding the layer key bindings, or
  • a packages.vim, adding the packages that needs to be installed
  • optionally, if a func.vim is present, it is loaded first (define commands and helper functions in this to keep things clean)

These files are grouped under a +category/layer-name directory hierarchy. As an example, the layer buffers is located under the group +nav (short for navigation).

A layer is only ever run if it is enabled, so there is no need to check for it. However, if you want to check if another layer is enabled, before doing anything, it can be done with,

if SpaceNeovimIsLayerEnabled('+checkers/neomake')
  " Make specific configuration for neomake here...
endif

This can especially be useful in the +lang layers, to add information to checkers and completions.

API

The API available to layers are (<arg> are required, [arg] are optional), for keybindings,

Command Arguments Description Example
SpBind <map>, <binding>, <name>, <value>, <isCmd> Map a key to a specific mapping type, with a description and command to execute. The <isCmd> argument adds <CR> on the end if 1 and nothing if 0. SpBind 'tmap', 'wj', 'window-down', 'wincmd j', 1
SpMap <binding>, <name>, <value>, [isCmd] Map a key with map/noremap, with a description and command to execute. <isCmd> defaults to 1 (i.e. adds <CR>). SpMap 'wk', 'window-up', 'wincmd k'
SpMap <binding>, <name>, <value>, [isCmd] Map a key with nmap/nnoremap, with a description and command to execute. <isCmd> defaults to 1 (i.e. adds <CR>). SpMap 'wk', 'window-up', 'wincmd k'
SpVMap <binding>, <name>, <value>, [isCmd] Map a key with vmap/vnoremap, with a description and command to execute. <isCmd> defaults to 1 (i.e. adds <CR>). SpVMap 'wk', 'window-up', 'wincmd k'
SpFileTypeBind <filetype>, <map>, <binding>, <name>, <value>, <isCmd> Map a key, only shown under a specific filetype, to a specific mapping type, with a description and command to execute. The <isCmd> argument adds <CR> on the end if 1 and nothing if 0. SpBind 'tmap', 'wj', 'window-down', 'wincmd j', 1
SpFileTypeMap <filetype>, <binding>, <name>, <value>, [isCmd] Map a key with map/noremap, only shown under a specific filetype, with a description and command to execute. <isCmd> defaults to 1 (i.e. adds <CR>). SpFileTypeMap 'haskell', 'mgt', 'show-type-at', 'GhcModType'
SpFileTypeNMap <filetype>, <binding>, <name>, <value>, [isCmd] Map a key with nmap/nnoremap, only shown under a specific filetype, with a description and command to execute. <isCmd> defaults to 1 (i.e. adds <CR>). SpFileTypeNMap 'haskell', 'mgt', 'show-type-at', 'GhcModType'

And the API for various helper functions,

Command Arguments Description Example
SpAddPlugin <PluginName>, [Configuration] Adds a plugin to load with vim-plug optionally with a vim-plug configuration. SpAddPlugin 'Shougo/vimproc.vim', { 'for': 'haskell', 'do' : 'make' }
SpSpaceIndent <filetype>, <indentation> Set the amount of spaces a certain filetype is indented. SpSpaceIndent 'haskell', 2
SpTabsIndent <filetype>, <indentation> Set the amount of tabs a certain filetype is indented. SpTabsIndent 'go', 8
SpLoadFunc <path-to-script>, <file-name> Load (source) a file into Vim. SpLoadFunc expand('<sfile>:p') 'other-file.vim'' for loading 'other-file.vim' in the layer directory

Add a Keybinding

To add a keybinding, first make sure that the vim-leader-guide grouping exists with

" Top level grouping (i.e. SPC e)
let g:lmap.e = get(g:lmap, 'e', { 'name': 'errors' })
" Deeper level Grouping under SPC e m
let g:lmap.e.m = get(g:lmap.e, 'm', { 'name': 'more' })

NOTE: It is important to use get() to avoid overwriting the mapping if it exists in another layer already.

ANOTHER NOTE: if you are adding a new language, you don't have to add the grouping, since let g:lmap.m = { 'name': 'major-mode-cmd' } already exists.

The e in g:lmap.e denotes the key that the group is under. Then add your keybinding by using SpBind or the shorter SpMap/SpMap,

SpBind 'map', 'eC', 'neomake-check-file', 'Neomake', 1
" Is equivalent to,
SpMap 'eC', 'neomake-check-file', 'Neomake'

SpBind 'nmap', 'eC', 'neomake-check-file', 'Neomake', 0
" Is equivalent to (default value is `1`, so we explicitly say `0` to not automatically add `<CR>` behind),
SpMap 'eC', 'neomake-check-file', 'Neomake', 0

which puts the keybinding at SPC e l. Note that the first e in el is necessary to put it under the e grouping.

For more check out the +nav/buffers layer for an example of usage, and keybinding-helpers.vim for the helper functions.

Adding Packages

This time we use SpAddPlugin to add the plugin and its vim-plug configuration,

SpAddPlugin 'neomake/neomake'
SpAddPlugin 'Shougo/vimproc.vim', { 'for': 'haskell', 'do' : 'make' }

which will add the package 'neomake/neomake' to be installed with the configuration {} (default value), and 'Shougo/vimproc.vim' with the more complex configuration { 'for': 'haskell', 'do' : 'make' }. The configuration can be used for post-installation commands or to lazy-load the plugin (e.g. only loading a language plugin when that language filetype is active).

Including Files

To keep the files a bit more clean, your functions should reside in separate files, such as func.vim. If func.vim is found in your layer, it is automaticaly included as the first item. To easily include other files, use,

" Load `func.vim` in the current layer directory
SpLoadFunc expand('<sfile>:p')

" Load `other-file.vim` in current layer directory
SpLoadFunc expand('<sfile>:p'), 'other-file.vim'

The expand('<sfile>:p') bit is to include the path of the current layer that is calling the SpLoadFunc function. If no second argument is given it defaults to func.vim, since that is the normal convention.

For more check out the +nav/files layer for an example of usage, and helpers.vim for the helper functions.

Adding a New Language Layer

Most of adding a new language layer is just like adding a normal layer, except for keybindings and groupings, as described below.

Add a language keybinding

Adding a language keybinding is a bit different, since we only want it shown when the language is actually active. All language keybindings should be under SPC m, and if you use the helper functions, that's also where they'll go.

It consist of two combined steps:

  1. Add your groupings
  2. Add your mappings

Step 1. and step 2. is done using au FileType MYFILETYPE, for example, a snippet of the haskell keybindings,

au FileType haskell let g:lmap.m = { "name": "major-mode-cmd",
\"c": ["GhcModCheckAndLintAsync", "ghcmod/check"],
\"r": { "name": "haskell/refactor"
     \, "b": ["call ApplyAllSuggestion()", "hlint/refactor-buffer"]
     \, "r": ["all ApplyOneSuggestion()", "hlint/refactor-at-point"]
  \ },
\"h": { "name": "haskell/documentation"
     \, "h": ["SpaceNeovimHaskellHoogle", "search-hoogle"]
     \, "t": ["GhcModType", "ghcmod/type-at"]
     \, "i": ["GhcModInfo", "ghcmod/info"]
  \ },
\}

We simply construct a new dictionary mapping for g:lmap.m which is only valid under our filetype, and contains the commands we want to bind. A "name": "haskell/grouping" defines a simple grouping and a ["GhcModCheckAndLintAsync", "ghcmod/check"] defines a command and description respectively.

Note: The reason it's defined under a filetype in this tedious way, is so that we get unique mappings for each filetype and that the change happens automatically.

For more check out the +lang/haskell layer for an example of usage, and bindings.vim for the helper functions.

Pre-commit linting

It is recommended to add the following to .git/hooks/pre-commit,

# Get the current dir
startDir=$(pwd)
# Get the project root
rootDir=$(git rev-parse --show-toplevel)

cd $rootDir

# Run vint
vint auto-layers.vim keybinding-helpers.vim helpers.vim
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].