1

vimrc stuff

This commit is contained in:
Evan Pratten 2022-08-18 12:24:16 -04:00
parent 32d6f346dc
commit f199a5a20b
5 changed files with 188 additions and 0 deletions

15
README.md Normal file
View File

@ -0,0 +1,15 @@
# ewconfig: My dotfiles
## Neovim
```sh
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
```
And in `nvim`, run
```text
:PlugInstall
:Copilot setup
```

33
configs/nvim/init.vim Normal file
View File

@ -0,0 +1,33 @@
" Enable mouse usage
set mouse=a
" Tab size
set tabstop=4
set shiftwidth=4
set expandtab
" Force VIM to use system clipboard
set clipboard=unnamedplus
" Enable per-project vimrc files
set exrc
set secure
" This is where the plugins be
call plug#begin()
Plug 'github/copilot.vim'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
" And this is where the plugins no longer be
call plug#end()
" Enable filetype plugins
set nocompatible
filetype plugin on
syntax on
" Enable rainbow
let g:rainbow_active = 1

View File

@ -0,0 +1,101 @@
[remmina]
password=.
gateway_username=
notes_text=
vc=
preferipv6=0
ssh_tunnel_loopback=0
serialname=
sound=off
disableserverbell=0
printer_overrides=
name=pi-tnc
console=0
colordepth=32
security=
precommand=
disable_fastpath=0
tightencoding=0
left-handed=0
multitransport=0
postcommand=
group=
server=pi-tnc.local
viewonly=0
ssh_tunnel_certfile=
glyph-cache=0
ssh_tunnel_enabled=0
disableclipboard=0
parallelpath=
audio-output=
monitorids=
cert_ignore=0
gateway_server=
serialpermissive=0
ssh_tunnel_password=
old-license=0
protocol=RDP
resolution_mode=2
pth=
loadbalanceinfo=
disableautoreconnect=0
clientbuild=
clientname=
disablesmoothscrolling=0
resolution_width=0
drive=
username=ewpratten
relax-order-checks=0
base-cred-for-gw=0
profile-lock=0
showcursor=0
network=none
gateway_domain=
serialdriver=
rdp2tcp=
gateway_password=
rdp_reconnect_attempts=
restricted-admin=0
multimon=0
domain=
disableserverinput=0
exec=
enable-autostart=0
smartcardname=
serialpath=
ssh_tunnel_passphrase=
viewmode=1
proxy=
quality=2
usb=
shareprinter=0
disablepasswordstoring=0
span=0
parallelname=
shareparallel=0
disableencryption=0
keymap=
ssh_tunnel_username=
ssh_tunnel_auth=0
shareserial=0
resolution_height=0
timeout=
useproxyenv=0
sharesmartcard=0
execpath=
microphone=
freerdp_log_filters=
ssh_tunnel_privatekey=
window_maximize=1
encodings=
ignore-tls-errors=1
ssh_tunnel_server=
dvc=
gateway_usage=0
gwtransp=http
websockets=0
freerdp_log_level=INFO
disable-smooth-scrolling=0
window_height=754
window_width=1093
scale=2

View File

@ -0,0 +1,38 @@
[remmina]
encodings=
ssh_tunnel_privatekey=
name=edge-004-kansas-us.na.as204466.va3zza.com
colordepth=32
password=.
quality=2
disablesmoothscrolling=0
precommand=
ssh_tunnel_enabled=0
viewonly=0
disableserverinput=0
ignore-tls-errors=1
postcommand=
tightencoding=0
server=193.148.251.11:5900
disablepasswordstoring=0
ssh_tunnel_username=
disableclipboard=0
disableserverbell=0
ssh_tunnel_password=
profile-lock=0
showcursor=0
enable-autostart=0
disableencryption=0
ssh_tunnel_loopback=0
group=
notes_text=
ssh_tunnel_server=
ssh_tunnel_certfile=
keymap=
ssh_tunnel_auth=0
proxy=
protocol=VNC
username=root@pam
ssh_tunnel_passphrase=
viewmode=1
window_maximize=0

View File

@ -11,6 +11,7 @@
force: true
~/.config/tabset: configs/tabset
~/.local/share/remmina: configs/remmina/hosts
~/.config/nvim: configs/nvim
- create:
- ~/Downloads