Compare commits
No commits in common. "6c16fd104dddfe490c3794c0d4de500ab918fdc4" and "6cbd9cade6a059d2ac3439158e6d06af9a24de1f" have entirely different histories.
6c16fd104d
...
6cbd9cade6
12
.bashrc
12
.bashrc
@ -61,14 +61,6 @@ export KUBECONFIG=~/.kube/config
|
|||||||
# Gpg keep key session to this TTY
|
# Gpg keep key session to this TTY
|
||||||
export GPG_TTY=$(tty)
|
export GPG_TTY=$(tty)
|
||||||
|
|
||||||
# Set the go bin for `go install` commands
|
|
||||||
export GOBIN="$HOME/.local/gobin"
|
|
||||||
# Make the go bin
|
|
||||||
mkdir -p $GOBIN
|
|
||||||
# And add the gobin to the executable path
|
|
||||||
export PATH="$GOBIN:$PATH"
|
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Convience Aliases ###########################################################
|
# Convience Aliases ###########################################################
|
||||||
###############################################################################
|
###############################################################################
|
||||||
@ -132,7 +124,7 @@ fi
|
|||||||
# Custom command autocompletions
|
# Custom command autocompletions
|
||||||
PROG=tea source "$HOME/.config/tea/autocomplete.sh"
|
PROG=tea source "$HOME/.config/tea/autocomplete.sh"
|
||||||
PROG=pass source "$HOME/.local/bin/pass-completion.sh"
|
PROG=pass source "$HOME/.local/bin/pass-completion.sh"
|
||||||
which flux > /dev/null 2>&1 && . <(flux completion bash)
|
which flux && . <(flux completion bash)
|
||||||
|
|
||||||
# Store history after every command
|
# Store history after every command
|
||||||
shopt -s histappend
|
shopt -s histappend
|
||||||
@ -159,5 +151,3 @@ export NVM_DIR="$HOME/.nvm"
|
|||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh
|
[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh
|
||||||
eval "$(atuin init bash)"
|
eval "$(atuin init bash)"
|
||||||
|
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
{"base-dir": "/home/tyler", "template": "%{artist}/%{album}/%{track} - %{title}", "overwrite": false, "no-art": false, "embed-art": true, "embed-lyrics": true, "group": false, "no-slugify": false, "ok-chars": "-_~", "space-char": "-", "ascii-only": false, "keep-spaces": true, "keep-upper": true, "no-confirm": false, "debug": false}
|
|
@ -1,47 +0,0 @@
|
|||||||
return {
|
|
||||||
defaults = { lazy = true },
|
|
||||||
install = { colorscheme = { "nvchad" } },
|
|
||||||
|
|
||||||
ui = {
|
|
||||||
icons = {
|
|
||||||
ft = "",
|
|
||||||
lazy = " ",
|
|
||||||
loaded = "",
|
|
||||||
not_loaded = "",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
performance = {
|
|
||||||
rtp = {
|
|
||||||
disabled_plugins = {
|
|
||||||
"2html_plugin",
|
|
||||||
"tohtml",
|
|
||||||
"getscript",
|
|
||||||
"getscriptPlugin",
|
|
||||||
"gzip",
|
|
||||||
"logipat",
|
|
||||||
"netrw",
|
|
||||||
"netrwPlugin",
|
|
||||||
"netrwSettings",
|
|
||||||
"netrwFileHandlers",
|
|
||||||
"matchit",
|
|
||||||
"tar",
|
|
||||||
"tarPlugin",
|
|
||||||
"rrhelper",
|
|
||||||
"spellfile_plugin",
|
|
||||||
"vimball",
|
|
||||||
"vimballPlugin",
|
|
||||||
"zip",
|
|
||||||
"zipPlugin",
|
|
||||||
"tutor",
|
|
||||||
"rplugin",
|
|
||||||
"syntax",
|
|
||||||
"synmenu",
|
|
||||||
"optwin",
|
|
||||||
"compiler",
|
|
||||||
"bugreport",
|
|
||||||
"ftplugin",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
@ -4,7 +4,7 @@ local capabilities = require("plugins.configs.lspconfig").capabilities
|
|||||||
local lspconfig = require "lspconfig"
|
local lspconfig = require "lspconfig"
|
||||||
|
|
||||||
-- if you just want default config for the servers then put them in a table
|
-- if you just want default config for the servers then put them in a table
|
||||||
local servers = { "html", "cssls", "ts_ls", "clangd" }
|
local servers = { "html", "cssls", "tsserver", "clangd" }
|
||||||
|
|
||||||
for _, lsp in ipairs(servers) do
|
for _, lsp in ipairs(servers) do
|
||||||
lspconfig[lsp].setup {
|
lspconfig[lsp].setup {
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
require "nvchad.mappings"
|
|
||||||
|
|
||||||
-- add yours here
|
|
||||||
|
|
||||||
local map = vim.keymap.set
|
|
||||||
|
|
||||||
map("n", ";", ":", { desc = "CMD enter command mode" })
|
|
||||||
map("i", "jk", "<ESC>")
|
|
||||||
|
|
||||||
-- map({ "n", "i", "v" }, "<C-s>", "<cmd> w <cr>")
|
|
@ -1,6 +0,0 @@
|
|||||||
require "nvchad.options"
|
|
||||||
|
|
||||||
-- add yours here!
|
|
||||||
|
|
||||||
-- local o = vim.o
|
|
||||||
-- o.cursorlineopt ='both' -- to enable cursorline!
|
|
@ -70,7 +70,7 @@ local default_plugins = {
|
|||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
event = { "BufReadPost", "BufNewFile" },
|
event = { "BufReadPost", "BufNewFile" },
|
||||||
tag = "v0.9.3",
|
tag = "v0.9.2",
|
||||||
cmd = { "TSInstall", "TSBufEnable", "TSBufDisable", "TSModuleInfo" },
|
cmd = { "TSInstall", "TSBufEnable", "TSBufDisable", "TSModuleInfo" },
|
||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
opts = function()
|
opts = function()
|
||||||
|
15
.tmux.conf
15
.tmux.conf
@ -1,15 +0,0 @@
|
|||||||
# Remap leader to ctrl+a
|
|
||||||
unbind C-b
|
|
||||||
set-option -g prefix C-p
|
|
||||||
bind-key C-p send-prefix
|
|
||||||
|
|
||||||
# Quick release config file
|
|
||||||
bind r source-file ~/.tmux.conf
|
|
||||||
|
|
||||||
# Enable mouse usage
|
|
||||||
set -g mouse on
|
|
||||||
|
|
||||||
bind h select-pane -L
|
|
||||||
bind j select-pane -D
|
|
||||||
bind k select-pane -U
|
|
||||||
bind l select-pane -R
|
|
Loading…
Reference in New Issue
Block a user