MOTD, Updates
Added tmux config with nvim fixes Updated install.sh to also run stow Added support for motd in fish
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
if test -f /etc/motd
|
||||
cat /ect/motd
|
||||
end
|
||||
|
||||
if status is-interactive
|
||||
# Commands to run in interactive sessions can go here
|
||||
end
|
||||
|
||||
@@ -1,17 +1,14 @@
|
||||
{
|
||||
"extras": [
|
||||
"lazyvim.plugins.extras.dap.core",
|
||||
"lazyvim.plugins.extras.lang.clangd",
|
||||
"lazyvim.plugins.extras.lang.cmake",
|
||||
"lazyvim.plugins.extras.lang.docker",
|
||||
"lazyvim.plugins.extras.lang.elixir",
|
||||
"lazyvim.plugins.extras.lang.go",
|
||||
"lazyvim.plugins.extras.lang.java",
|
||||
"lazyvim.plugins.extras.lang.json",
|
||||
"lazyvim.plugins.extras.lang.markdown",
|
||||
"lazyvim.plugins.extras.lang.omnisharp",
|
||||
"lazyvim.plugins.extras.lang.python",
|
||||
"lazyvim.plugins.extras.lang.rust",
|
||||
"lazyvim.plugins.extras.lang.tailwind",
|
||||
"lazyvim.plugins.extras.lang.tex",
|
||||
"lazyvim.plugins.extras.lang.typescript",
|
||||
"lazyvim.plugins.extras.lang.yaml"
|
||||
|
||||
@@ -1,7 +1,12 @@
|
||||
-- Options are automatically loaded before lazy.nvim startup
|
||||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||
-- Add any additional options here
|
||||
vim.opt.smartindent = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.clipboard = "unnamedplus"
|
||||
vim.opt.shell = "fish"
|
||||
vim.g.autoformat = false
|
||||
|
||||
local opt = vim.opt
|
||||
|
||||
opt.smartindent = true
|
||||
opt.relativenumber = true
|
||||
opt.clipboard = "unnamedplus"
|
||||
opt.shell = "fish"
|
||||
opt.spell = false
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
return {
|
||||
{ "ellisonleao/gruvbox.nvim" },
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
return {
|
||||
"ggandor/leap.nvim",
|
||||
dependencies = { "tpope/vim-repeat" },
|
||||
}
|
||||
4
config/tmux/tmux.conf
Normal file
4
config/tmux/tmux.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
set-option -sg escape-time 10
|
||||
set-option -g focus-events on
|
||||
set-option -sa terminal-features ',xterm-256color:RGB'
|
||||
set-option -g default-shell /usr/bin/fish
|
||||
Reference in New Issue
Block a user