From 4d1d79ae9f36260021cec35e1c3d958f11ffc92a Mon Sep 17 00:00:00 2001 From: Oshgnacknak Date: Sun, 7 Sep 2025 01:30:45 +0200 Subject: [PATCH] flake --- _bashrc | 4 ++++ _config/nvim/plugin/lsp.lua | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/_bashrc b/_bashrc index f51f3d6..1593fb7 100755 --- a/_bashrc +++ b/_bashrc @@ -24,6 +24,10 @@ mkcd() { cd "$1" } +if [[ $- == *i* ]] && command -v zsh >/dev/null 2>&1; then + exec zsh +fi + export PS1=" $(tput bold)$(tput setaf 1)[$(tput setaf 3)\u$(tput setaf 2)@$(tput setaf 4)\H $(tput setaf 5)\w$(tput setaf 1)]$(tput setaf 7) $ $(tput sgr0)" diff --git a/_config/nvim/plugin/lsp.lua b/_config/nvim/plugin/lsp.lua index 31d9862..2383d58 100644 --- a/_config/nvim/plugin/lsp.lua +++ b/_config/nvim/plugin/lsp.lua @@ -38,9 +38,7 @@ vim.api.nvim_create_autocmd('LspAttach', { }) require("mason").setup() -require("mason-lspconfig").setup { - ensure_installed = { "rust_analyzer" }, -} +require("mason-lspconfig").setup({}) local cmp = require('cmp') local cmp_nvim_lsp = require('cmp_nvim_lsp')