mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-09-10 11:46:25 +00:00
Compare commits
2 Commits
c08658eccc
...
4a7bbc6746
Author | SHA1 | Date | |
---|---|---|---|
4a7bbc6746 | |||
d5b28f9bea |
@@ -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,
|
||||||
|
@@ -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,
|
||||||
}
|
}
|
||||||
|
@@ -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
|
||||||
|
@@ -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"
|
||||||
|
@@ -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
12
.zshrc
@@ -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
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user