7 lines
181 B
EmacsLisp
7 lines
181 B
EmacsLisp
;;; +keybindings.el -*- lexical-binding: t; -*-
|
|
;; Custom keybindings
|
|
;;
|
|
;; Keybindings for next/previous buffer
|
|
(map! :n "C-c j" #'previous-buffer)
|
|
(map! :n "C-c k" #'next-buffer)
|