This file contains 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
sudo apt-get -y update && sudo apt-get -y install ninja-build gettext cmake unzip curl && git clone -b stable --single-branch --depth 1 https://github.com/neovim/neovim && cd neovim && make CMAKE_BUILD_TYPE=RelWithDebInfo && sudo make install |
This file contains 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
/****************************** Module Header ******************************\ | |
* Module Name: kbd.h | |
* | |
* Copyright (c) Microsoft Corporation. All rights reserved. | |
* | |
* Keyboard table values that form the basis for languages and keyboard types. | |
* The basis is US, kbd type 4 - all others are a variation on this. | |
* This file is included by all kbd**.h files. | |
* | |
* History: |
This file contains 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
# This will create a list of all packages, that are installed, except the ones that were installed during the initial Arch-Setup. | |
# It can be used to restore an Arch installation or to review installed packages during a little spring cleaning. | |
# Get all packages in base and base-devel | |
pacman -Sqg base base-devel > /tmp/basepackages | |
# Get all installed packages without depenencies | |
pacman -Qqen > /tmp/allpackages | |
# Get all explicitly installed packages without base |