flake
This commit is contained in:
parent
b397267e16
commit
4d1d79ae9f
2 changed files with 5 additions and 3 deletions
4
_bashrc
4
_bashrc
|
@ -24,6 +24,10 @@ mkcd() {
|
||||||
cd "$1"
|
cd "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if [[ $- == *i* ]] && command -v zsh >/dev/null 2>&1; then
|
||||||
|
exec zsh
|
||||||
|
fi
|
||||||
|
|
||||||
export PS1="
|
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 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)"
|
$ $(tput sgr0)"
|
||||||
|
|
|
@ -38,9 +38,7 @@ vim.api.nvim_create_autocmd('LspAttach', {
|
||||||
})
|
})
|
||||||
|
|
||||||
require("mason").setup()
|
require("mason").setup()
|
||||||
require("mason-lspconfig").setup {
|
require("mason-lspconfig").setup({})
|
||||||
ensure_installed = { "rust_analyzer" },
|
|
||||||
}
|
|
||||||
|
|
||||||
local cmp = require('cmp')
|
local cmp = require('cmp')
|
||||||
local cmp_nvim_lsp = require('cmp_nvim_lsp')
|
local cmp_nvim_lsp = require('cmp_nvim_lsp')
|
||||||
|
|
Loading…
Add table
Reference in a new issue