Compare commits

...

2 Commits

Author SHA1 Message Date
4a7bbc6746 Change tmux to gruvbox. Fix zsh paths 2022-06-29 16:01:20 +02:00
d5b28f9bea Update theme, remove unused plugins 2022-06-29 16:00:42 +02:00
6 changed files with 17 additions and 17 deletions

View File

@@ -6,7 +6,7 @@ O = {
clipboard = unnamedplus, clipboard = unnamedplus,
incsearch = true, incsearch = true,
termguicolors = true, termguicolors = true,
colorscheme = 'nord', colorscheme = 'gruvbox-baby',
hidden_files = true, hidden_files = true,
wrap_lines = false, wrap_lines = false,
number = true, number = true,

View File

@@ -118,7 +118,7 @@ capabilities = require('cmp_nvim_lsp').update_capabilities(capabilities)
lspconfig['elixirls'].setup{ lspconfig['elixirls'].setup{
cmd = { "/Users/fbecker18/opt/elixir-ls/language_server.sh"}, cmd = { "/home/halfdan/opt/elixir-ls/rel/language_server.sh"},
on_attach = on_attach, on_attach = on_attach,
capabilities = capabilities, capabilities = capabilities,
} }

View File

@@ -123,12 +123,10 @@ return require("packer").startup(
use {'kdheepak/JuliaFormatter.vim'} use {'kdheepak/JuliaFormatter.vim'}
-- themes & colorschemes -- themes & colorschemes
use {'dracula/vim', as='dracula' }
use { "briones-gabriel/darcula-solid.nvim", requires = "rktjmp/lush.nvim" }
use {'shaunsingh/moonlight.nvim', as='moonlight'}
use {'arcticicestudio/nord-vim'} use {'arcticicestudio/nord-vim'}
use {'joshdick/onedark.vim'} use {'joshdick/onedark.vim'}
use {'sainnhe/everforest'} use {'gruvbox-community/gruvbox'}
use {'luisiacc/gruvbox-baby'}
require_plugin('julia-vim') require_plugin('julia-vim')
end end

View File

@@ -33,3 +33,8 @@ vim.wo.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shif
vim.o.updatetime = 300 -- Faster completion vim.o.updatetime = 300 -- Faster completion
vim.o.timeoutlen = O.timeoutlen -- By default timeoutlen is 1000 ms vim.o.timeoutlen = O.timeoutlen -- By default timeoutlen is 1000 ms
vim.o.clipboard = "unnamedplus" -- Copy paste between vim and everything else vim.o.clipboard = "unnamedplus" -- Copy paste between vim and everything else
-- Enable telescope theme
vim.g.gruvbox_baby_telescope_theme = 1
vim.g.gruvbox_baby_background_color = "dark"

View File

@@ -8,8 +8,11 @@ set -g @plugin 'tmux-plugins/tpm'
# Simple tmux options for anyone # Simple tmux options for anyone
set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sensible'
#set -g @plugin 'dracula/tmux' #set -g @plugin 'odedlaz/tmux-onedark-theme'
set -g @plugin 'odedlaz/tmux-onedark-theme'
# Gruvbox theme
set -g @plugin 'egel/tmux-gruvbox'
set -g @tmux-gruvbox 'dark' # or 'light'
# Persistent tmux envs across system restarts # Persistent tmux envs across system restarts
set -g @plugin 'tmux-plugins/tmux-resurrect' set -g @plugin 'tmux-plugins/tmux-resurrect'

12
.zshrc
View File

@@ -31,15 +31,9 @@ SAVEHIST=10000
#compinit #compinit
#setopt COMPLETE_ALIASES #setopt COMPLETE_ALIASES
# goodies
eval "$(direnv hook zsh)"
eval "$(starship init zsh)"
. $HOME/.asdf/asdf.sh . $HOME/.asdf/asdf.sh
. $HOME/.asdf/completions/asdf.bash . $HOME/.asdf/completions/asdf.bash
# goodies
#### smctl@bootstrap.sm_shell_helpers-start eval "$(direnv hook zsh)"
. $HOME/.sm.zshrc eval "$(starship init zsh)"
#### smctl@bootstrap.sm_shell_helpers-end