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 install build-essential autoconf libtool bison re2c pkg-config | |
sudo apt-get install libxml2-dev\ | |
libcurl4-openssl-dev\ | |
libjpeg-dev\ | |
libpng-dev\ | |
libxpm-dev\ | |
libmysqlclient-dev\ | |
libpq-dev\ | |
libicu-dev\ |
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
git clone git://git.sv.gnu.org/emacs.git | |
sudo apt install build-essential libgtk-3-dev libgnutls28-dev libtiff5-dev libgif-dev libjpeg-dev libpng-dev libxpm-dev libncurses-dev texinfo autoconf | |
sudo apt install libjansson4 libjansson-dev | |
sudo apt install libgccjit0 libgccjit-10-dev gcc-10 g++-10 | |
sudo apt install libxpm-dev librsvg2-dev libwebp-dev liblcms2-dev libgmp-dev libxml2-dev libm17n-dev libotf-dev libxft-dev libsystemd-dev | |
sudo apt install sqlite3 libsqlite3-dev | |
export CC=/usr/bin/gcc-10 CXX=/usr/bin/gcc-10 | |
./configure --with-native-compilation --with-json --with-pgtk --with-mailutils |
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
(setq lsp-ui-doc-enable t | |
lsp-ui-doc-use-childframe t | |
lsp-ui-doc-position 'bottom | |
lsp-ui-doc-include-signature t | |
lsp-ui-sideline-enable nil | |
lsp-ui-flycheck-enable t | |
lsp-ui-flycheck-list-position 'right | |
lsp-ui-flycheck-live-reporting t | |
lsp-ui-peek-enable t | |
lsp-ui-peek-list-width 60 |
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
#!/bin/bash | |
# Copyright © 2017 Google Inc. | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software |