This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" An example for a vimrc file. | |
" | |
" Maintainer: Bram Moolenaar <[email protected]> | |
" Last change: 2016 Jul 28 | |
" | |
" To use it, copy it to | |
" for Unix and OS/2: ~/.vimrc | |
" for Amiga: s:.vimrc | |
" for MS-DOS and Win32: $VIM\_vimrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Lines configured by zsh-newuser-install | |
bindkey -v | |
HISTFILE=~/.histfile | |
HISTSIZE=1000 | |
SAVEHIST=1000 | |
setopt appendhistory autocd beep extendedglob nomatch notify | |
# End of lines configured by zsh-newuser-install | |
# The following lines were added by compinstall | |
zstyle :compinstall filename '/home/archer/.zshrc' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default config for sway | |
# | |
# Copy this to ~/.config/sway/config and edit it to your liking. | |
# | |
# Read `man 5 sway` for a complete reference. | |
### Variables | |
# | |
# Logo key. Use Mod1 for Alt. | |
set $mod Mod4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I: 12/08/17 23:55:48 - [main.c:250] Linux fuji-san 4.14.3-1-ARCH #1 SMP PREEMPT Thu Nov 30 18:33:13 UTC 2017 x86_64 GNU/Linux | |
I: 12/08/17 23:55:48 - [main.c:222] Contents of /etc/os-release: | |
I: 12/08/17 23:55:48 - [main.c:229] NAME="Arch Linux" | |
I: 12/08/17 23:55:48 - [main.c:229] PRETTY_NAME="Arch Linux" | |
I: 12/08/17 23:55:48 - [main.c:229] ID=arch | |
I: 12/08/17 23:55:48 - [main.c:229] ID_LIKE=archlinux | |
I: 12/08/17 23:55:48 - [main.c:229] ANSI_COLOR="0;36" | |
I: 12/08/17 23:55:48 - [main.c:229] HOME_URL="https://www.archlinux.org/" | |
I: 12/08/17 23:55:48 - [main.c:229] SUPPORT_URL="https://bbs.archlinux.org/" | |
I: 12/08/17 23:55:48 - [main.c:229] BUG_REPORT_URL="https://bugs.archlinux.org/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <linux/module.h> | |
#include <linux/kallsyms.h> | |
#include <linux/syscalls.h> | |
#include <linux/kernel.h> | |
#include <linux/fdtable.h> | |
#include <linux/slab.h> | |
#include <linux/fs.h> | |
#include <asm/uaccess.h> | |
static void **sct; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more options and information see | |
# http://rpf.io/configtxtreadme | |
# Some settings may impact device functionality. See link above for details | |
# uncomment if you get no picture on HDMI for a default "safe" mode | |
#hdmi_safe=1 | |
# uncomment this if your display has a black border of unused pixels visible | |
# and your display can output without overscan | |
#disable_overscan=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if &compatible | |
set nocompatible | |
endif | |
filetype off | |
" append to runtime path | |
set rtp+=/usr/share/vim/vimfiles | |
" initialize dein, plugins are installed to this directory | |
call dein#begin(expand('~/.cache/dein')) | |
" add packages here, e.g: | |
call dein#add('arakashic/chromatica.nvim') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if &compatible | |
set nocompatible | |
endif | |
filetype off | |
" append to runtime path | |
set rtp+=/usr/share/vim/vimfiles | |
" initialize dein, plugins are installed to this directory | |
call dein#begin(expand('~/.cache/dein')) | |
" add packages here, e.g: | |
call dein#add('arakashic/chromatica.nvim') |