aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/fish/config.fish7
-rw-r--r--config/nvim/lua/plugins.lua23
-rw-r--r--config/xmonad/xmonad.hs4
-rwxr-xr-xinstall1
4 files changed, 20 insertions, 15 deletions
diff --git a/config/fish/config.fish b/config/fish/config.fish
index ac14b33..a58cb12 100644
--- a/config/fish/config.fish
+++ b/config/fish/config.fish
@@ -1,17 +1,18 @@
if [ "$(uname)" = 'Linux' ]
- set -gx PATH "/usr/local/sbin:/usr/local/bin:/usr/bin:$HOME/.local/bin:/opt/cuda/bin"
+ set -gx PATH "/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/cuda/bin"
set -gx MAIL 'me@cacharle.xyz'
set -gx SUDO 'doas'
else if [ "$(uname)" = 'Darwin' ]
set -gx PATH "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
set -gx PATH "$PATH:$HOME/.brew/bin:$HOME/git/dotfiles/bin:$HOME/bin"
- set -gx PATH "$PATH:$HOME/.local/share/go/bin"
- set -gx PATH "$PATH:$HOME/.local/bin"
set -gx MAIL 'charles.cabergs@colruytgroup.com'
set -gx SUDO 'sudo'
set -gx LC_CTYPE 'en_US.UTF-8'
end
+set -gx PATH "$PATH:$HOME/.local/share/go/bin"
+set -gx PATH "$PATH:$HOME/.local/bin"
+
# applications
set -gx EDITOR 'nvim'
set -gx TERMINAL 'alacritty'
diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua
index 998de38..7319d17 100644
--- a/config/nvim/lua/plugins.lua
+++ b/config/nvim/lua/plugins.lua
@@ -68,7 +68,7 @@ return require("packer").startup(function()
-- nvim lsp configuration
use {
"neovim/nvim-lspconfig",
- ft = {"rust", "python", "c", "cpp", "lua", "go", "haskell", "ocaml"},
+ ft = {"rust", "python", "c", "cpp", "lua", "go", "haskell", "ocaml", "zig"},
config = function()
vim.diagnostic.config {
signs = false,
@@ -180,6 +180,9 @@ return require("packer").startup(function()
}
lspconfig.clangd.setup { on_attach = on_attach }
+
+ -- pacman -S zls
+ lspconfig.zls.setup{}
end,
}
@@ -527,15 +530,15 @@ return require("packer").startup(function()
-- -- run = ":DistantInstall"
-- }
- use {
- 'chipsenkbeil/distant.nvim',
- branch = 'v0.3',
- config = function()
- require('distant'):setup()
- require("telescope").load_extension("distant")
- end,
- -- run = ":DistantInstall"
- }
+ -- use {
+ -- 'chipsenkbeil/distant.nvim',
+ -- branch = 'v0.3',
+ -- config = function()
+ -- require('distant'):setup()
+ -- require("telescope").load_extension("distant")
+ -- end,
+ -- -- run = ":DistantInstall"
+ -- }
-- jupyter kernel in nvim (with images, needs ueberzug)
-- use {
diff --git a/config/xmonad/xmonad.hs b/config/xmonad/xmonad.hs
index 3d3fbcf..57f8d74 100644
--- a/config/xmonad/xmonad.hs
+++ b/config/xmonad/xmonad.hs
@@ -70,8 +70,8 @@ manageHook' = composeAll
, willFloat --> insertPosition Above Newer -- insert little pop up windows above all the rest
, className =? "Anki" --> doFloat
, className =? "Steam" --> doFloat
- , className =? "Gimp" --> doFloat
- , className =? "OBS" --> doFloat
+ -- , className =? "Gimp" --> doFloat
+ -- , className =? "OBS" --> doFloat
, isDialog --> doF swapUp
]
diff --git a/install b/install
index 9803358..6382581 100755
--- a/install
+++ b/install
@@ -110,6 +110,7 @@ fi
fish -c 'fisher install pure-fish/pure'
fish -c 'fisher install PatrickF1/fzf.fish'
+fish -c 'fisher install decors/fish-colored-man'
###############################################################################
# Linux specific