I hereby claim:
- I am lukemathwalker on github.
- I am lukemathwalker (https://keybase.io/lukemathwalker) on keybase.
- I have a public key ASCK705Ubq3v6NAJOqHbVewiei1nyOPQda_yIMcF9yOAgQo
To claim this, I am signing this object:
call plug#begin('~/.local/share/nvim/site/plugged') | |
Plug 'tpope/vim-fugitive' | |
Plug 'tpope/vim-surround' | |
Plug 'scrooloose/nerdtree' | |
Plug 'vim-syntastic/syntastic' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'flazz/vim-colorschemes' | |
Plug 'easymotion/vim-easymotion' | |
Plug 'Valloric/YouCompleteMe' |
" Vim syntax file | |
" Language: Markdown | |
" Maintainer: [email protected] | |
" Borrowed from the one by Tim Pope <[email protected]> | |
" Filenames: *.markdown | |
" Last Change: 2015 Sep 21 | |
if exists("b:current_syntax") | |
finish | |
endif |
call plug#begin('~/.local/share/nvim/site/plugged') | |
Plug 'scrooloose/nerdtree' | |
Plug 'tmhedberg/SimpylFold' | |
"Git: | |
Plug 'tpope/vim-fugitive' | |
"Ctags: | |
Plug 'craigemery/vim-autotag' | |
Plug 'ludovicchabant/vim-gutentags' | |
"Remove swap file pain | |
Plug 'gioele/vim-autoswap' |
I hereby claim:
To claim this, I am signing this object:
Plug 'easymotion/vim-easymotion' | |
let mapleader=" " | |
set easymotion | |
nmap <space><space>s :action KJumpAction<cr> | |
nmap <space><space>w :action KJumpAction.Word0<cr> | |
nmap <space><space>l :action KJumpAction.Line<cr> | |
set hlsearch |
name: CI | |
on: | |
push | |
jobs: | |
deploy: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 |
version: 2 | |
jobs: | |
build-and-test: | |
docker: | |
- image: cimg/rust:1.69 | |
environment: | |
# Fail the build if there are warnings | |
RUSTFLAGS: '-D warnings' | |
steps: | |
- checkout |
language: rust | |
cache: cargo | |
rust: | |
- stable | |
before_cache: | | |
cargo install cargo-tarpaulin | |
before_script: | |
- rustup component add rustfmt | |
- rustup component add clippy | |
- cargo install cargo-audit |
name: Security audit | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
paths: | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
jobs: | |
security_audit: |
image: "rust:latest" | |
default: | |
before_script: | |
- rustc --version | |
- cargo --version | |
stages: | |
- test |