Skip to content

Instantly share code, notes, and snippets.

syntax on
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/syntastic'
@tbeckr
tbeckr / .vimrc
Last active November 8, 2019 12:40
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/syntastic'
Plugin 'jesseleite/vim-noh'
@tbeckr
tbeckr / .Xmodmap
Last active October 31, 2019 20:03
! -*- coding: utf-8 -*-
!
!keycode 37 = Control_L NoSymbol Control_L
!keycode 64 = Alt_L Meta_L Alt_L Meta_L
!keycode 105 = Control_R NoSymbol Control_R
!keycode 133 = Super_L NoSymbol Super_L
!keycode 134 = Super_R NoSymbol Super_R
!keycode 135 = Menu NoSymbol Menu
!keycode 147 = XF86MenuKB NoSymbol XF86MenuKB
!keycode 204 = NoSymbol Alt_L NoSymbol Alt_L
@tbeckr
tbeckr / package.json
Created November 8, 2019 12:39
extensoes do coc-nvim
{
"dependencies": {
"coc-angular": "^0.3.1",
"coc-css": "^1.2.2",
"coc-eslint": "^1.2.2",
"coc-highlight": "^1.2.5",
"coc-html": "^1.2.1",
"coc-java": "^1.4.5",
"coc-json": "^1.2.4",
"coc-markdownlint": "^0.4.0",
@tbeckr
tbeckr / Program.cs
Created October 5, 2020 18:10 — forked from DanielSWolf/Program.cs
Console progress bar. Code is under the MIT License: http://opensource.org/licenses/MIT
using System;
using System.Threading;
static class Program {
static void Main() {
Console.Write("Performing some task... ");
using (var progress = new ProgressBar()) {
for (int i = 0; i <= 100; i++) {
progress.Report((double) i / 100);