Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.24 KB

user-conf-template.org

File metadata and controls

50 lines (39 loc) · 1.24 KB

Lexical casting

;; -*- lexical-binding: t; -*-

Font

(add-to-list 'default-frame-alist '(font . "Hack-12"))

Icons

(defvar ayrc/icons-enabled nil)

Double buffering

Attention! May cause flickering!

(add-to-list 'default-frame-alist '(inhibit-double-buffering . t))

User personal info

(setq user-full-name "Armoken")
(setq user-mail-address "[email protected]")

C/C++

Select “irony”, “ccls”, “gtags” for some editor part.

(defvar ayrc/cc-eldoc-plugin                         "ccls")
(defvar ayrc/cc-syntax-check-plugin                  "ccls")
(defvar ayrc/cc-autocompletion-plugin                "ccls")

Allow eval in .dir-locals.el

It can be dangerous, but I know what I do.

(setq enable-local-eval t)

Python

Select “pylsp” or “pyright” server for editing Python code.

(defvar ayrc/python-lsp-server "pylsp")