Skip to content

Instantly share code, notes, and snippets.

View camwright's full-sized avatar

Cameron Wright camwright

  • USA
View GitHub Profile
set guioptions-=m "remove menu bar
set guioptions-=T "remove toolbar
set guioptions-=r "remove right-hand scroll bar
set guioptions-=L "remove left-hand scroll bar
set guioptions+=c "don't pop up dialog box
let g:netrw_banner=0
set guifont=Office\ Code\ Pro\ Medium\ 10

Tasks

This is Task 01 of the Eudyptula Challenge

Write a Linux kernel module, and stand-alone Makefile, that when loaded prints to the kernel debug log level, "Hello World!" Be sure to make the module be able to be unloaded as well.

The Makefile should build the kernel module against the source for the

@camwright
camwright / vimrc
Last active October 2, 2017 06:14
"Use 24-bit (true-color) mode in Vim/Neovim when outside tmux.
if (empty($TMUX))
if (has("nvim"))
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
endif
if (has("termguicolors"))
set termguicolors
endif
endif