Author: tempforever Date: To: Devuan list Subject: Re: [DNG] Some minor annoyances
There seems to be some invalid character (0xa0) at the beginning of
those lines. Remove them, and that error should go away.
Walter Dnes wrote: > My .vimrc is...
>
> syntax enable
> set nohlsearch
> set ruler
> set rulerformat=3D%35(%<%F\ %h\ %m\ %r\ %l,\ %c\ %P%)
> set background=3Ddark
> set expandtab
> set softtabstop=3D2
> set tabstop=3D2
> set shiftwidth=3D2
> filetype indent on
> " When editing a file, always jump to the last known cursor position.
> " Don't do it when the position is invalid, when inside an event handler
> " (happens when dropping a file on gvim) and for a commit message (it's
> " likely a different one than last time).
> autocmd BufReadPost *
> =A0 \ if line("'\"") >=3D 1 && line("'\"") <=3D line("$") && &ft !~# 'commi=
> t'
> =A0 \ |=A0=A0 exe "normal! g`\""
>
>