목록utility 사용법/emacs (33)
관심있는 것들 정리
테스트 환경: MacOS Ventura Emacs version: 28.2 처음에는 company와 company-lsp 패키지를 이용하는 방식으로 configuration을 제공받았으나, 계속 loading 시 패키지를 찾지 못하는 문제가 발생하여 다른 방식을 제안해 달라고했고, 제안 받은 내용은 다음과 같다. ;; Package 관리자 설정 (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (package-initialize) ;; use-package 패키지 설치 (unless (package-installed-p 'use-package) (package-refresh-conte..
나: emacs 전문가로서, 처음 emacs를 설치했을 때, org 모드와 관련된 확장 기능을 모두 사용할 수 있는 configuration을 알려주세요chatGTP: Emacs를 설치하고 org 모드와 관련된 모든 기능을 사용할 수 있는 설정(configuration)을 만드는 방법은 다양합니다. 아래에는 하나의 예시 설정을 제공하겠습니다. 이 설정은 대부분의 org 모드 기능을 활용하고, 편의성을 높이기 위해 몇 가지 유용한 패키지도 포함합니다. ;; Package 관리자 설정 (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (package-initialize) ;; use-pa..
Emacs 27.2 기준으로 다음 라이브러리들을 download 해둔 후 configure 수행 시 문제없이 컴파일 가능함 sudo apt-get install build-essential texinfo libx11-dev libxpm-dev libjpeg-dev libpng-dev libgif-dev libtiff-dev libgtk2.0-dev libncurses-dev gnutls-dev libgtk-3-dev
c, c++ 모드에 대해 필요한 것만 정리해 놓은 사이트 skebanga.github.io/cpp-dev-in-spacemacs/ C++ in spacemacs Two new emacs packages, ‘lsp-mode’ and ‘dap-mode’, have brought the power of Microsoft’s Language Server Protocol and Debug Adapter Protocol to emacs. skebanga.github.io 간단한 spacemacs 가이드 페이지 interblah.net/getting-started-with-spacemacs
기본적인 ruby 사용을 위한 설정은 다음 페이지에 잘 정리가 되어 있다 worace.works/2016/06/07/getting-started-with-emacs-for-ruby/ Getting Started with Emacs for Ruby Getting Started with Emacs for Ruby 07 Jun 2016 Lately I’ve been gradually drawing a few students at Turing into the Emacs fold. Along the way I’ve been thinking about what is needed for a minimal but sufficient Emacs setup for working with Ruby code. worace.w..
회사에서 Emacs를 이용해 작업을 하다보면 은근히 Emacs의 key binding이 손가락에 무리를 준다는 생각이 들어 Space Emacs를 써 보려했었다. 하지만 설치부터 시작해서 여러가지 문제가 발생하고, 뭐 하나 하려면, 어디부터 시작해야할 지 감도 안오고 해서, 기존에 쓰던 configuration으로 계속 쓰다가 얼마전에 구글링 하던 중 Doom Emacs 라는 것이 있어 써 보게되었다 github.com/hlissner/doom-emacs hlissner/doom-emacs An Emacs framework for the stubborn martian hacker - hlissner/doom-emacs github.com 좋은 지 아닌지는 잘 모르겠는데... 일단, UI도 깔끔하고, 설치..
Emacs의 Dired mode관련 key-binding이 정리되어 있는 reference card https://www.gnu.org/software/emacs/refcards/pdf/dired-ref.pdf