Compare commits
12 Commits
cefef8a655
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 1214c4f3c8 | |||
| cbbf1ca0f9 | |||
| d6925ab9cc | |||
| 3f1a1c1375 | |||
| 7140f9cf70 | |||
| 80ba7347e1 | |||
| 622f5f3338 | |||
| 02f3624b6f | |||
| 566ccc8489 | |||
| 6ffe89a826 | |||
| 06d71e8b38 | |||
| 2557e11e17 |
@@ -11,7 +11,6 @@ return {
|
|||||||
require("mason-lspconfig").setup({
|
require("mason-lspconfig").setup({
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"clangd",
|
"clangd",
|
||||||
"cmake",
|
|
||||||
"lua_ls",
|
"lua_ls",
|
||||||
"pyright",
|
"pyright",
|
||||||
"rust_analyzer",
|
"rust_analyzer",
|
||||||
@@ -28,9 +27,6 @@ return {
|
|||||||
lspconfig.clangd.setup({
|
lspconfig.clangd.setup({
|
||||||
capabilities = capabilities
|
capabilities = capabilities
|
||||||
})
|
})
|
||||||
lspconfig.cmake.setup({
|
|
||||||
capabilities = capabilities
|
|
||||||
})
|
|
||||||
lspconfig.lua_ls.setup({
|
lspconfig.lua_ls.setup({
|
||||||
capabilities = capabilities
|
capabilities = capabilities
|
||||||
})
|
})
|
||||||
|
|||||||
11
nvim/dot-config/nvim/lua/plugins/markdown.lua
Normal file
11
nvim/dot-config/nvim/lua/plugins/markdown.lua
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
return {
|
||||||
|
"MeanderingProgrammer/render-markdown.nvim",
|
||||||
|
config = function ()
|
||||||
|
require("render-markdown").setup({
|
||||||
|
dependencies = {
|
||||||
|
'nvim-treesitter/nvim-treesitter',
|
||||||
|
'nvim-tree/nvim-web-devicons',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end
|
||||||
|
}
|
||||||
@@ -4,7 +4,7 @@ return{
|
|||||||
config = function()
|
config = function()
|
||||||
local configs = require("nvim-treesitter.configs")
|
local configs = require("nvim-treesitter.configs")
|
||||||
configs.setup({
|
configs.setup({
|
||||||
ensure_installed = { "c", "cmake", "cpp", "lua", "python", "rust", "toml" },
|
ensure_installed = { "c", "cmake", "cpp", "lua", "markdown", "markdown_inline", "python", "rust", "toml" },
|
||||||
auto_install = true,
|
auto_install = true,
|
||||||
highlight = { enable = true },
|
highlight = { enable = true },
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
|||||||
@@ -13,11 +13,11 @@ $python\
|
|||||||
[](fg:#3d59a1 bg:#414868)\
|
[](fg:#3d59a1 bg:#414868)\
|
||||||
$cmd_duration\
|
$cmd_duration\
|
||||||
[ ](fg:#414868)\
|
[ ](fg:#414868)\
|
||||||
\n$character"""
|
\n$sudo\
|
||||||
|
$character"""
|
||||||
|
|
||||||
right_format = """
|
right_format = """
|
||||||
$status\
|
$status
|
||||||
$sudo\
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
[character]
|
[character]
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ set -g @plugin 'fabioluciano/tmux-tokyo-night'
|
|||||||
set -g @plugin 'tmux-plugins/tpm'
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
|
|
||||||
set -g @theme_variation 'moon'
|
set -g @theme_variation 'storm'
|
||||||
set -g @theme_disable_plugins 1
|
set -g @theme_disable_plugins 1
|
||||||
#set -g @theme_plugin_datetime_format '%a %d %b %Y'
|
#set -g @theme_plugin_datetime_format '%a %d %b %Y'
|
||||||
|
|
||||||
|
|||||||
14
wezterm/dot-wezterm.lua
Normal file
14
wezterm/dot-wezterm.lua
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
-- Pull in the wezterm API
|
||||||
|
local wezterm = require("wezterm")
|
||||||
|
|
||||||
|
-- This will hold the configuration
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
config.color_scheme = 'tokyonight_storm'
|
||||||
|
config.window_background_opacity = 0.95
|
||||||
|
config.enable_tab_bar = false
|
||||||
|
config.initial_cols = 205
|
||||||
|
config.initial_rows = 45
|
||||||
|
config.font_size = 10
|
||||||
|
|
||||||
|
return config
|
||||||
@@ -8,6 +8,9 @@ alias btm="btm --theme=gruvbox"
|
|||||||
# Remap ls to use lsd
|
# Remap ls to use lsd
|
||||||
alias ls="lsd"
|
alias ls="lsd"
|
||||||
|
|
||||||
|
# Add alias for la to call lsd -lah
|
||||||
|
alias la="lsd -lah"
|
||||||
|
|
||||||
# Replace cat with bat
|
# Replace cat with bat
|
||||||
alias cat="bat"
|
alias cat="bat"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user