diff options
-rw-r--r-- | .bashrc | 5 | ||||
-rw-r--r-- | .config/nvim/init.vim | 5 | ||||
-rw-r--r-- | .gitconfig | 10 | ||||
-rw-r--r-- | .ssh/config | 1 | ||||
-rw-r--r-- | .ssh/known_hosts | 5 |
5 files changed, 24 insertions, 2 deletions
@@ -14,12 +14,13 @@ export PS1="\[$(tput bold)\]\[$(tput setaf 1)\][\[$(tput setaf 3)\]\u\[$(tput se [ -f "$HOME/.config/aliasrc" ] && source "$HOME/.config/aliasrc" #eval $(dircolors -b $HOME/.dircolors) alias ls='ls --color' +alias xclip='xclip -selection clipboard' #LS_COLORS='di=1;35:fi=0:ln=31:pi=5:so=5:bd=5:cd=5:or=31:mi=0:ex=35:*.rpm=90:*.png=35:*.gif=36:*.jpg=35:*.c=92:*.jar=33:*.py=93:*.h=90:*.txt=94:*.doc=104:*.docx=104:*.odt=104:*.csv=102:*.xlsx=102:*.xlsm=102:*.rb=31:*.cpp=92:*.sh=92:*.html=96:*.zip=4;33:*.tar.gz=4;33:*.mp4=105:*.mp3=106' export LS_COLORS +export PATH=$PATH:$HOME/.local/bin:$HOME/.cargo/bin +export GPG_TTY=$(tty) export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) gpgconf --launch gpg-agent -echo UPDATESTARTUPTTY | gpg-connect-agent > /dev/null -export PATH=$PATH:$HOME/.local/bin:$HOME/.cargo/bin [[ $(tty) == "/dev/tty1" ]] && startx && exit diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index f29ddac..b55cea7 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -1,6 +1,8 @@ call plug#begin() Plug 'drewtempelmeyer/palenight.vim' +Plug 'neoclide/coc.nvim', {'branch': 'release'} +Plug 'neovim/nvim-lspconfig' call plug#end() @@ -31,6 +33,7 @@ set shiftwidth=4 set expandtab set autoindent set fileformat=unix +filetype on " Some basics: nnoremap c "_c @@ -104,3 +107,5 @@ set fileformat=unix map <leader><leader> <Esc>/<++><Enter>"_c4l set rtp+=/usr/share/vim/vimfiles + +lua require'lspconfig'.luau_lsp.setup{filetypes = {"luau", "lua"}, cmd = {"luau-lsp", "lsp", "--definitions=/home/turret/git/taurus/globalTypes.d.lua", "--docs=/home/turret/taurus/en-us.json"}} diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..a6ec697 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,10 @@ +[user] + email = turret@duck.com + name = turret + signingkey = D498C1B2BD871C4BE37D7FF03A0A545576502850 +[commit] + gpgsign = true +[pull] + rebase = true +[alias] + scrub = reset --hard @{upstream} diff --git a/.ssh/config b/.ssh/config new file mode 100644 index 0000000..4be131d --- /dev/null +++ b/.ssh/config @@ -0,0 +1 @@ +Match host * exec "gpg-connect-agent UPDATESTARTUPTTY /bye" diff --git a/.ssh/known_hosts b/.ssh/known_hosts new file mode 100644 index 0000000..ecc4825 --- /dev/null +++ b/.ssh/known_hosts @@ -0,0 +1,5 @@ +server.turret.cyou ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBTL/ONy9LlG2+icbPn7FSA+q8Ty39UM64gTRn6xDu9g +git.turret.cyou ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBTL/ONy9LlG2+icbPn7FSA+q8Ty39UM64gTRn6xDu9g +zeus.turretllc.us ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBTL/ONy9LlG2+icbPn7FSA+q8Ty39UM64gTRn6xDu9g +zeus ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBTL/ONy9LlG2+icbPn7FSA+q8Ty39UM64gTRn6xDu9g +10.0.0.1 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBTL/ONy9LlG2+icbPn7FSA+q8Ty39UM64gTRn6xDu9g |