all repos — dotfiles @ 610774206141ef85d613597728a460e77ee25832

my *nix dotfiles

Clean up
Anirudh Oppiliappan x@icyphox.sh
Mon, 18 Oct 2021 10:30:03 +0530
commit

610774206141ef85d613597728a460e77ee25832

parent

a8cae402f4ed2e1513d0811ff82947efe1f6c4be

4 files changed, 28 insertions(+), 10 deletions(-)

jump to
M bash/.bashrc.d/04-exports.bashbash/.bashrc.d/04-exports.bash

@@ -9,7 +9,7 @@ export PLAN9=/usr/local/plan9

export PATH=$PATH:$PLAN9/bin # export thingys -export EDITOR=$HOME/bin/a +export EDITOR=nvim export SSH_KEY_PATH="~/.ssh/id_rsa" export GPG_TTY=$(tty) export INPUTRC=~/.inputrc
M config/nvim/init.luaconfig/nvim/init.lua

@@ -13,7 +13,6 @@ 'airblade/vim-gitgutter';

'nathom/filetype.nvim'; 'lewis6991/impatient.nvim'; { 'ms-jpq/coq_nvim', branch='coq' }; - { 'ms-jpq/coq.artifacts', branch='artifacts' }; { 'vim/better-text-objs', url='https://git.peppe.rs' }; { 'vim/vim-colors-plain', url='https://git.peppe.rs' }; }
M config/nvim/lua/settings.luaconfig/nvim/lua/settings.lua

@@ -84,7 +84,33 @@ -- unknown files are 'text'

cmd('au BufNewFile,BufRead * if &ft == "" | set ft=text | endif') -- coq.nvim -g.coq_settings = { auto_start = 'shut-up' } +g.coq_settings = { + auto_start = 'shut-up', + display = { + icons = { + mode = 'none' + }, + preview = { + border = 'solid', + }, + }, +} -- filetype.nvim g.did_load_filetypes = 1 + +-- disable built-in plugins +local disabled_built_ins = { + 'gzip', + 'man', + 'shada_plugin', + 'tarPlugin', + 'tar', + 'zipPlugin', + 'zip', + 'netrwPlugin', +} + +for i = 1, 8 do + g['loaded_' .. disabled_built_ins[i]] = 1 +end
M home/.gitconfighome/.gitconfig

@@ -33,10 +33,3 @@ showDirtyState = true

showUntrackedFiles = false [pull] rebase = true -[color] - ui = false - branch = false - diff = false - interactive = false - status = false - log = false