Skip to content

Instantly share code, notes, and snippets.

@Jacalz
Created June 13, 2024 10:26
Show Gist options
  • Save Jacalz/6b4fb61e4d753e21783dce409cfae359 to your computer and use it in GitHub Desktop.
Save Jacalz/6b4fb61e4d753e21783dce409cfae359 to your computer and use it in GitHub Desktop.
Neovim setup for Swedish keyboard 🇸🇪
set nocompatible
set showmatch
set mouse=v
set hlsearch
set incsearch
set autoindent
set number
set wildmode=longest,list
filetype plugin indent on
syntax on
set mouse=a
set clipboard=unnamedplus
filetype plugin on
set ttyfast
set number
set relativenumber
inoremap å <Esc>
vnoremap å <Esc>
nnoremap ö }
nnoremap ä {
nnoremap Ö ^
nnoremap Ä $
vnoremap ö }
vnoremap ä {
vnoremap Ö ^
vnoremap Ä $
nnoremap Ã… ggVG
inoremap Ã… <Esc>ggVG
vnoremap Ã… <Esc>ggVG
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment